
PacketSpy 是一款强大的网络数据包嗅探工具,专为捕获和分析网络流量而设计。它提供了一套全面的功能,用于检查 HTTP 请求与响应、查看原始负载数据以及收集网络设备信息。借助 PacketSpy,您可以深入了解网络的通信模式,并有效排查网络问题。
git clone https://github.com/HalilDeniz/PacketSpy.git
PacketSpy 需要安装以下依赖:
pip install -r requirements.txt
要开始使用 PacketSpy,请使用以下命令行选项:
root@denizhalil:/PacketSpy# python3 packetspy.py --help
usage: packetspy.py [-h] [-t TARGET_IP] [-g GATEWAY_IP] [-i INTERFACE] [-tf TARGET_FIND] [--ip-forward] [-m METHOD]
options:
-h, --help show this help message and exit
-t TARGET_IP, --target TARGET_IP
Target IP address
-g GATEWAY_IP, --gateway GATEWAY_IP
Gateway IP address
-i INTERFACE, --interface INTERFACE
Interface name
-tf TARGET_FIND, --targetfind TARGET_FIND
Target IP range to find
--ip-forward, -if Enable packet forwarding
-m METHOD, --method METHOD
Limit sniffing to a specific HTTP method
root@denizhalil:/PacketSpy# python3 packetspy.py -tf 10.0.2.0/24 -i eth0
Device discovery
**************************************
Ip Address Mac Address
**************************************
10.0.2.1 52:54:00:12:35:00
10.0.2.2 52:54:00:12:35:00
10.0.2.3 08:00:27:78:66:95
10.0.2.11 08:00:27:65:96:cd
10.0.2.12 08:00:27:2f:64:fe
root@denizhalil:/PacketSpy# python3 packetspy.py -t 10.0.2.11 -g 10.0.2.1 -i eth0
******************* started sniff *******************
HTTP Request:
Method: b'POST'
Host: b'testphp.vulnweb.com'
Path: b'/userinfo.php'
Source IP: 10.0.2.20
Source MAC: 08:00:27:04:e8:82
Protocol: HTTP
User-Agent: b'Mozilla/5.0 (X11; Linux x86_64; rv:105.0) Gecko/20100101 Firefox/105.0'
Raw Payload:
b'uname=admin&pass=mysecretpassword'
HTTP Response:
Status Code: b'302'
Content Type: b'text/html; charset=UTF-8'
--------------------------------------------------
HTTPS 功能仍在开发中
欢迎贡献!要为 PacketSpy 做出贡献,请执行以下步骤:
如果您对 PacketSpy 有任何疑问、评论或建议,请随时通过以下方式联系我:
PacketSpy 采用 MIT 许可证发布。更多信息请参阅 LICENSE。