上一页 1 ··· 96 97 98 99 100 101 102 103 104 ··· 180 下一页
摘要: #include <stdio.h> #include <math.h> #include <string.h> int pdhwd(int shu) { int a[10],i=0,b; while(shu!=0) { a[i]=shu%10; shu=shu/10; i++; } for(b=0 阅读全文
posted @ 2022-05-03 15:11 myrj 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 手机httpcanary 专门APP抓包工具 搜索 复制 阅读全文
posted @ 2022-05-03 08:42 myrj 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int cf(int a) { int c=1,s=1; for(c=1;c<=a;c++) s=s*10; return s; } int pdhw(int shu) { int c=shu,a=1,b,d; while(shu) { shu=shu/cf(a 阅读全文
posted @ 2022-05-02 21:17 myrj 阅读(817) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> main() { char s[]="ab\0cd"; int t=sizeof(s)/sizeof(s[0]); int m=strlen(s); printf("%d %d %s\n",m,t,s); getchar(); } 搜索 复制 阅读全文
posted @ 2022-05-02 15:37 myrj 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 租赁合同: 租赁期间内承租人是房屋的实际管理人,承租人需要时刻注意防火防盗、防触电,不做危及自身人身安全的活动,并且承租人在房屋内发生的一切安全事故都由承租人自己承担,与出租人无关,包括但不限于高空抛物、水、电、煤气使用不当、在房屋内摔倒等造成的人身伤亡。如果承租人利用此房进行不正当的经营或者违法活 阅读全文
posted @ 2022-05-01 17:58 myrj 阅读(2199) 评论(0) 推荐(0) 编辑
摘要: import os,time,re,sys,subprocess os.chdir('F:\wifi\hashcat-6.2.5\hashcat-6.2.5') ab='hashcat -m 22000 BCD1.hc22000 -a 3 ?d?d?d?d?d?d?d?d -w 3 -D 2 -O 阅读全文
posted @ 2022-05-01 09:52 myrj 阅读(125) 评论(0) 推荐(0) 编辑
摘要: xcopy c:\hashcat e:\hashcat/s目标是文件名还是目录名(F=文件,D=目录)?如何自动取消这一提示,让其自动选择执行方法:命令如下:xcopy c:\hashcat e:\hashcat\ /s/y 如果在BAT文件末尾输入pause,则命令执行完仍然停留在CMD黑屏窗口, 阅读全文
posted @ 2022-04-29 17:00 myrj 阅读(813) 评论(0) 推荐(0) 编辑
摘要: BAT文件内容如下: hashcat -S --brain-server --brain-host=192.168.1.254 --brain-port=5000 --brain-password=abc hashcat -O --brain-client --brain-client-featur 阅读全文
posted @ 2022-04-29 16:04 myrj 阅读(243) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <time.h>//声明time 时间不可逆转一直在变 #include <math.h> #include <stdlib.h> //<stdlib.h>用于调用 rand(), main() { srand((unsigned)time(0 阅读全文
posted @ 2022-04-29 06:51 myrj 阅读(126) 评论(0) 推荐(0) 编辑
摘要: hashcat -m 22000 d076.hc22000 -a 7 ?l?l?l --increment --increment-min 3 --increment-max 3 riqi.dic -w 3 -D 2 -O --session=my1 --status -o mu.txt --for 阅读全文
posted @ 2022-04-28 06:12 myrj 阅读(276) 评论(0) 推荐(0) 编辑
上一页 1 ··· 96 97 98 99 100 101 102 103 104 ··· 180 下一页