id=1) andif((ascii(substr((select flag from flag),1,1))='40'),sleep(3),0)
分析这行sql语句意思,如果选择字符ascii等于40,那么延迟3秒
应该是进行sql盲注
2.流量分析2
拉入科来
用get方法获取html页面
过滤一下
1
srcip=39.105.136.196and protocol=http
生成flag为 flag{17uajil}
3.easycap
拉入科来
点开看 每个额外数据都有
字符
写代码
1 2 3 4 5 6 7 8 9
import pyshark from datetime import timedelta import re
cap = pyshark.FileCapture("d5ba8f87969145059170a222f01e7883.pcap", tshark_path="D:\Program Files\Wireshark\\tshark.exe") print(cap) for pkt in cap: if(int(pkt.length)==67): print(bytes.fromhex(pkt.tcp.payload).decode('utf-8'),end='')