上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 186 下一页
摘要: #include <stdio.h> struct student{ char name[12]; char number[9]; int score; }; struct student st[3]={{"zhang liang","19040301",87},{"li hong","180403 阅读全文
posted @ 2022-09-09 15:08 myrj 阅读(26) 评论(0) 推荐(0)
摘要: #include <stdio.h> static int day_tab[2][13]={{0,31,28,31,30,31,30,31,31,30,31,30,31},{0,31,29,31,30,31,30,31,31,30,31,30,31}}; struct date { int year 阅读全文
posted @ 2022-09-08 15:29 myrj 阅读(171) 评论(0) 推荐(0)
摘要: #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 阅读(41) 评论(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 阅读(355) 评论(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 阅读(266) 评论(0) 推荐(0)
摘要: Cisco交换机密码破解 这里破解密码一定要保证不改变原有配置,仅仅重置密码 1、打开SecureCRT软件,插上Console线,调波特率为9600连接交换机设备 2、连接成功后,长按MODE键直至交换机进入底层模式,提示符为Switch: 3、在switch:后执行flash_init命令初始化 阅读全文
posted @ 2022-09-08 05:38 myrj 阅读(1174) 评论(0) 推荐(0)
摘要: enable password这种方式是明文的。enable secret是采用了MD5加密的。service password-encryption这个加密的方式是采用了cisco的私有加密方式来加密的。所以我在设置了vty、console、和AUX口密码的时候,开启service passwor 阅读全文
posted @ 2022-09-08 05:36 myrj 阅读(1368) 评论(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 阅读(257) 评论(0) 推荐(0)
摘要: 想要了解enable password 7与enabled secret 5的区别,首先了解service password-encryption开关选项的功能,它是指我们是否要采用cisco的私有加密方式把密码字符串存储在设备中,所以当我们在设置vty、console和aux端口密码的时候,如果开 阅读全文
posted @ 2022-09-07 10:36 myrj 阅读(1176) 评论(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 阅读(908) 评论(0) 推荐(0)
上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 186 下一页