摘要: 使用Python的requests库自定义请求 import requests from requests import Request, Session url = "http://challenge-d590d34746e26bc5.sandbox.ctfhub.com:10800/index.php" headers = {"user-ag 阅读全文
posted @ 2023-09-17 22:06 geyashi 阅读(54) 评论(0) 推荐(0)
摘要: 对于大量的数据,一般先用 Wireshark 软件先进行,然后在用 tshark 或 pyshark 分析 # 过滤出所有有uri请求的响应file_data tshark -nr [pcap文件] -Y 'http.request.full_uri' -T fields -e http.file_ 阅读全文
posted @ 2023-09-17 18:30 geyashi 阅读(163) 评论(0) 推荐(0)