上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 188 下一页
摘要: #include <stdio.h> main() { struct student{ char no[8]; char name[8]; int score; }; struct student ab[10]={ { "2020001","张三1",156 },{ "2020002","张三2", 阅读全文
posted @ 2022-09-08 09:54 myrj 阅读(48) 评论(0) 推荐(0)
摘要: #include "stdafx.h" #include <stdio.h> #include <string.h> #include <stdlib.h> #include <time.h> char DecPwd[255]={0}; char xlat[] = { 0×64, 0×73, 0×6 阅读全文
posted @ 2022-09-08 07:47 myrj 阅读(385) 评论(0) 推荐(0)
摘要: ''' 选择明文攻击 根据已有密码和算法计算xlat ''' def getxlat(enc_pw,dec_pw): xlat = [9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999,9999, 9999, 9999, 9999, 9999, 9999, 阅读全文
posted @ 2022-09-08 07:05 myrj 阅读(291) 评论(0) 推荐(0)
摘要: Cisco交换机密码破解 这里破解密码一定要保证不改变原有配置,仅仅重置密码 1、打开SecureCRT软件,插上Console线,调波特率为9600连接交换机设备 2、连接成功后,长按MODE键直至交换机进入底层模式,提示符为Switch: 3、在switch:后执行flash_init命令初始化 阅读全文
posted @ 2022-09-08 05:38 myrj 阅读(1275) 评论(0) 推荐(0)
摘要: enable password这种方式是明文的。enable secret是采用了MD5加密的。service password-encryption这个加密的方式是采用了cisco的私有加密方式来加密的。所以我在设置了vty、console、和AUX口密码的时候,开启service passwor 阅读全文
posted @ 2022-09-08 05:36 myrj 阅读(1397) 评论(0) 推荐(0)
摘要: username admin privilege 15 password 7 005e254f63664a556awebmaster username admin password 7 102c13281d074f012843797fenable secret 5 $1$7eyy$wBw5rs0w4 阅读全文
posted @ 2022-09-07 14:52 myrj 阅读(279) 评论(0) 推荐(0)
摘要: 想要了解enable password 7与enabled secret 5的区别,首先了解service password-encryption开关选项的功能,它是指我们是否要采用cisco的私有加密方式把密码字符串存储在设备中,所以当我们在设置vty、console和aux端口密码的时候,如果开 阅读全文
posted @ 2022-09-07 10:36 myrj 阅读(1303) 评论(0) 推荐(0)
摘要: line是进入行模式的命令,Console、AUX、VTY、TTY……都是行模式的接口,需要用line配置。 VTY是虚拟终端口,使用Telnet时进入的就是对方的VTY口。 路由器上有5个VTY口,分别0、1、2、3、4,如果想同时配置这5口,就line vty 0 4 Cisco的设备管理有很多 阅读全文
posted @ 2022-09-07 09:44 myrj 阅读(949) 评论(0) 推荐(0)
摘要: 锐捷RG-EG3210 V2设置方法 阅读全文
posted @ 2022-09-06 11:18 myrj 阅读(1320) 评论(2) 推荐(0)
摘要: #include <stdio.h> static int ci=0; int sum(int i) { ci++; int m=0; if (i<100) { m=i+sum(i+1); printf("%d ",m); return m; } else return i; } main() { 阅读全文
posted @ 2022-09-05 15:50 myrj 阅读(254) 评论(0) 推荐(0)
上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 188 下一页