摘要: 坐标文本格式类似 10 11 12 34 11 55 #脚本文件 import matplotlib.pyplot as plt import numpy as np x = [] y = [] with open('message.txt','r') as f: datas = f.readlin 阅读全文
posted @ 2023-08-29 13:39 willingyut 阅读(111) 评论(0) 推荐(0)
摘要: 一长一短音频波形转成二进制,进一步转成十六进制,再写入文件中 import wave, codecs import numpy as np wavfile = wave.open(u'music.wav',"rb") params = wavfile.getparams() nframes = pa 阅读全文
posted @ 2023-08-27 14:29 willingyut 阅读(18) 评论(0) 推荐(0)
摘要: 图片 steghide分离图片文件 steghide --extract -sf xxx.png 不知道口令直接回车 foremost分离图片文件 分离出来的gif如果损坏,或者只显示部分,应该手动在winhex里面导出损坏的文件->选取gif文件头, 右键=》选块初始位置,定位最后,右键-》选块尾 阅读全文
posted @ 2023-08-26 21:54 willingyut 阅读(54) 评论(0) 推荐(0)
摘要: s为二进制数据,脚本使用python3运行 TYPE_HEX = 0 TYPE_ASCII = 1 TYPE_BINARY = 2 TYPE_BRAILLE = 3 with open('lookup_table.txt', 'r') as f: rows = f.read().splitlines 阅读全文
posted @ 2023-08-26 20:26 willingyut 阅读(52) 评论(0) 推荐(0)
摘要: 可能有嵌套文件,放进NetWorkMiner分离 查找关键字flag、key 查看导出http对象 strings xxx.pcap | grep flag或者grep 666 分组列表查找DESCRIPTOR可以找出usb设备 阅读全文
posted @ 2023-08-26 18:19 willingyut 阅读(17) 评论(0) 推荐(0)
摘要: 将十六进制数据放在data.txt里,前提是十六进制符合期望文件格式 例如该十六进制数据为 504B03040A0001080000739C8C4B7B36E495200000001400000004000000666C616781CD460EB62015168D9E64B06FC1712365FD 阅读全文
posted @ 2023-08-26 18:10 willingyut 阅读(379) 评论(0) 推荐(0)
摘要: tshark可以提取pcap文件的uri信息,例如url中的name tshark -r x.pcapng -e http.request.uri -T fields -Y 'http.request.uri' | grep -P 'name=[A-F0-9]{3}' | awk -F '=' '{ 阅读全文
posted @ 2023-08-26 18:01 willingyut 阅读(829) 评论(0) 推荐(0)
摘要: 在线工具 拼图网站 Unicode转emoji emoji解码 gif拆分 jwt 查询本地IP 字符串转Unicode(不保留) base64转图片 md5 php在线整理 瑞士军刀 可以选择版本的在线运行工具 离线工具 dirsearch GitHack 其他 jwt爆破工具c-jwt-crac 阅读全文
posted @ 2023-08-26 17:47 willingyut 阅读(64) 评论(0) 推荐(0)
摘要: 将base64解码,对结果进行异或处理 import base64 a = "AAoHAR1WI1BRX1RQJ1AgJVdfI1VXJ1JTJ1BVXiIjVyRRIiMlJRs=" a = base64.b64decode(a) for i in range(128): s = '' for j 阅读全文
posted @ 2023-08-26 14:15 willingyut 阅读(29) 评论(0) 推荐(0)
摘要: import os names = os.listdir(r"文件夹路径") i=0 #i用于统计文件数量 f = open('password.txt','w') for filename in names: index = filename.rfind('.') name = filename[ 阅读全文
posted @ 2023-08-26 13:35 willingyut 阅读(17) 评论(0) 推荐(0)