04 2022 档案

摘要: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 阅读(991) 评论(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 阅读(277) 评论(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 阅读(153) 评论(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 阅读(333) 评论(0) 推荐(0)
摘要:1.金地酒店由北向南,右转进入阳光大街 2.康平街由西向东,右转进入西环一路 3,振华大街由东向西,右转进入西环一路 4.宁乐大街由西向东,右转进入津泉路 阅读全文
posted @ 2022-04-27 16:19 myrj 阅读(251) 评论(0) 推荐(0)
摘要:int ab(int a,int b) { int c,d; for(c=1;c<=b;c++) if(a%c==0&&b%c==0) d=c; return d; } int gygb(int a,int b,int m) { int t,c,gy,gb; if(a>b) t=a,a=b,b=t; 阅读全文
posted @ 2022-04-27 15:59 myrj 阅读(124) 评论(0) 推荐(0)
摘要:#思路:先求最大公约数,再用两个数的积除以最大公约数,即为最小公倍数 #include <stdio.h> int main() { int a,b,c,d; scanf("%d %d",&a,&b); if(a>b) c=a,a=b,b=c; for(c=a;c>=1;c--) { if(b%c= 阅读全文
posted @ 2022-04-27 15:42 myrj 阅读(332) 评论(0) 推荐(0)
摘要:1.以管理员身份运行cmd 2.net user admin 123456 #将用户admin密码改为123456 补充: 在windows7中新增一个用户admin365,密码为password。在单击“开始”-“运行”中输入“cmd”并按“Shift+Ctrl+Enter”组合键,输入命令“ n 阅读全文
posted @ 2022-04-27 12:40 myrj 阅读(246) 评论(0) 推荐(0)
摘要:import requests,sys,time,re head1={'Host':'2865.litevote.com', 'Content-Length':'60', 'Accept':"application/json, text/plain, */*",'jwt':'', 'User-Age 阅读全文
posted @ 2022-04-27 07:03 myrj 阅读(276) 评论(0) 推荐(0)
摘要:# 获取当前鼠标位置print(pyautogui.position())在每次调用PyAutoGUI的函数后设置2.5秒的暂停: # 暂停2.5spyautogui.PAUSE = 2.5 此外,为了防止程序出问题,当鼠标移动到屏幕左上角,会引发pyautogui.FailSafeExceptio 阅读全文
posted @ 2022-04-26 03:51 myrj 阅读(969) 评论(0) 推荐(0)
摘要:import pyautoguiprint(pyautogui.size())#显示当前显示器分辩率pyautogui.moveTo(525,455)#移动鼠标到指定位置pyautogui.click()#当前位置单击pyautogui.doubleClick()#当前位置双击pyautogui.g 阅读全文
posted @ 2022-04-25 12:45 myrj 阅读(1902) 评论(0) 推荐(0)
摘要:select regexp_replace(neirong,'<.*>','') from dxyys 将字段neirong中的html标签即< >之间的所有字符替换成空来显示 update dxyys set neirong=regexp_replace(neirong,'<.*>','') 将字 阅读全文
posted @ 2022-04-24 07:36 myrj 阅读(916) 评论(0) 推荐(0)
摘要:#include <stdio.h> int gys(int ys,int b) { ys=ys%b; if(!ys) return b; return (gys(b,ys)); } main() { printf("%d\n",gys(110,24)); int n='e'; switch(n-- 阅读全文
posted @ 2022-04-23 15:45 myrj 阅读(201) 评论(0) 推荐(0)
摘要:import random def getpwd(ab,num): if num==1: for x in ab: yield x else: for x in ab: for y in getpwd(ab,num-1): yield x+y from itertools import produc 阅读全文
posted @ 2022-04-20 14:04 myrj 阅读(124) 评论(0) 推荐(0)
摘要:常用APDU指令响应码状态码 性质 描述9000 正常 成功执行6200 警告 信息未提供6281 警告 回送数据可能错误6282 警告 文件长度小于Le6283 警告 选中的文件无效6284 警告 FCI格式与P2指定的不符6300 警告 鉴别失败63Cx 警告 校验失败(x-允许重试次数)640 阅读全文
posted @ 2022-04-20 10:38 myrj 阅读(1853) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-04-20 10:26 myrj 阅读(212) 评论(0) 推荐(0)
摘要:平台 copy /b 1*.hc22000 1\multi.hc22000 hashcat -O -m 22000 multi.hc22000 -a 3 -w 3 -D 2 ?l?l?l?d?d?d?d?d --status --session=mysession1 搜索 复制 阅读全文
posted @ 2022-04-16 18:46 myrj 阅读(181) 评论(0) 推荐(0)
摘要:首先下载alook浏览器,打开这个网页bean.m.jd.com,然后登录 拷贝后,一键返回桌面,注意必须是一键 搜索 复制 阅读全文
posted @ 2022-04-16 18:02 myrj 阅读(2226) 评论(0) 推荐(0)
摘要:下载 阅读全文
posted @ 2022-04-16 17:56 myrj 阅读(528) 评论(0) 推荐(0)
摘要:#include <stdio.h> int zx(int m[],int a,int xx)//xx=1 正序 xx=0倒序 { int b,c,t; for(b=0;b<a;b++) for(c=0;c<a-b-1;c++) { if(m[c]>m[c+1] && xx==1) t=m[c],m 阅读全文
posted @ 2022-04-16 16:31 myrj 阅读(913) 评论(0) 推荐(0)
摘要:df.drop(df.tail(n).index) #从尾部去掉 n 行df.dorp(df.head(n).index) #从头去掉 n 行#可以加上 inplace=True 直接修改原 dataFrame,不过函数返回是 None也可以这样子 PageDF = PageDF[:-1] 阅读全文
posted @ 2022-04-15 11:23 myrj 阅读(3052) 评论(0) 推荐(0)
摘要:import pandas as pd import csv,sys,time,os def excel_one_line_to_list(file,m=1): df=pd.read_excel(file,usecols=[1],names=None)#读取项目名称不要列名 #n=df.shape[ 阅读全文
posted @ 2022-04-15 06:40 myrj 阅读(351) 评论(0) 推荐(0)
摘要:#include <stdio.h> void px(int a[],int n) { int i,j,t; for(i=0;i<n-1;i++) { for(j=0;j<n-1;j++) { if(a[j]>a[j+1]) { t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } 阅读全文
posted @ 2022-04-13 20:24 myrj 阅读(276) 评论(0) 推荐(0)
摘要:@echo off cd\ cd C:\Program Files (x86)\gakataka\Student Student.exe aa.vbs: set ws=WScript.CreateObject("WScript.Shell") ws.Run"c:\intel\aax.bat",0 建 阅读全文
posted @ 2022-04-12 16:27 myrj 阅读(120) 评论(0) 推荐(0)
摘要:a-3 掩码破解a-6 字典+掩码 hashcat -m 22000 tian.hc22000 -a 6 password.txt ?d?d?d -w 3 -O -D 2 well-spaced131 -> well-summarized131: well-spaced471 -> well-sum 阅读全文
posted @ 2022-04-11 21:39 myrj 阅读(263) 评论(0) 推荐(0)
摘要:hashcat -m 22000 1817_1649503015.hc22000 -a 3 ?a?a?a?d?d?d?d?d -w 3 -O -D 2hashcat -m 22000 1817_1649503015.hc22000 -a 3 ?l?l?l?d?d?d?d?d -w 3 -O -D 2 阅读全文
posted @ 2022-04-10 16:48 myrj 阅读(3644) 评论(0) 推荐(0)
摘要:#include <stdio.h> int pd(int a=10,int b=20)//C语言中是有语法问题 此文件保存为aa.cpp { return a+b; } int main() { printf("%d",pd(10,30)); return 0; } #include <stdio 阅读全文
posted @ 2022-04-08 15:49 myrj 阅读(82) 评论(0) 推荐(0)
摘要:During handling of the above exception, another exception occurred: 处理方法: cmd:netstat -ano找到被占用的端口,找右边对应的PID 5062tasklist|findstr "5062"显示对应的进程名称:pyth 阅读全文
posted @ 2022-04-07 16:49 myrj 阅读(1844) 评论(0) 推荐(0)
摘要:countif(b2:b24,b2)只能准确比较前15位 countif(b2:b24,b2&"*")可以比较超过15位 16 17 18位更多 搜索 复制 阅读全文
posted @ 2022-04-05 18:21 myrj 阅读(1033) 评论(0) 推荐(0)
摘要:if not pw.is_alive(): pr1.terminate() pr.terminate() 阅读全文
posted @ 2022-04-05 15:57 myrj 阅读(159) 评论(0) 推荐(0)
摘要:MD5是信息摘要(Message Digist)算法。 信息摘要算法是避免篡改的一种方法,他对特定明文进行单向散列,生成特定的数值,如果有人篡改了明文,你可以通过对篡改后的明文进行单向散列,与原来明文的散列进行对比,来证明篡改行为。一般摘要算法与RSA加密及解密配合使用,这就形成了密码学中常说的签名 阅读全文
posted @ 2022-04-05 15:46 myrj 阅读(323) 评论(0) 推荐(0)
摘要:# 使用win32com来判断进程是否存在 import win32com.client def proc_exist(process_name): is_exist = False wmi = win32com.client.GetObject('winmgmts:') processCodeCo 阅读全文
posted @ 2022-04-05 14:40 myrj 阅读(1069) 评论(0) 推荐(0)
摘要:import pandas as pd import pymysql,emoji,sys,requests import re,sys,time,pymysql import configparser import xlrd #导入模块 from xlutils.copy import copy # 阅读全文
posted @ 2022-04-05 13:41 myrj 阅读(351) 评论(0) 推荐(0)
摘要:0..abb=requests.post(url,headers=head1,data=aw) 会出现下面的错误提示: requests.exceptions.SSLError: HTTPSConnectionPool(host='www.。。。。.com', port=443): Max retr 阅读全文
posted @ 2022-04-04 22:04 myrj 阅读(564) 评论(0) 推荐(0)
摘要:#include <stdio.h> fun(int m) { if(m>0) fun(m-1); printf("%d ",m); } main() { int w=5; fun(w) ; getchar(); } 搜索 复制 阅读全文
posted @ 2022-04-02 06:59 myrj 阅读(49) 评论(0) 推荐(0)
摘要:def typeof(variate): type=None if isinstance(variate,int): type = "int" elif isinstance(variate,str): type = "str" elif isinstance(variate,float): typ 阅读全文
posted @ 2022-04-01 19:24 myrj 阅读(46) 评论(0) 推荐(0)
摘要:import multiprocessing from multiprocessing import Process,Lock,Manager from multiprocessing import Queue from multiprocessing import JoinableQueue #多 阅读全文
posted @ 2022-04-01 08:19 myrj 阅读(993) 评论(0) 推荐(0)