Merge pull request #40 from The-Art-of-Hacking/http_sniffer_patch1.1

Fixing TCP max packet size 65535
This commit is contained in:
Omar Santos 2020-10-09 14:21:19 -04:00 committed by GitHub
commit d60813cec1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ import socket
s=socket.socket(socket.PF_PACKET, socket.SOCK_RAW, socket.ntohs(0x0800))
while True:
data=s.recvfrom(65565)
data=s.recvfrom(65535)
try:
if "HTTP" in data[0][54:]:
print("[","="*30,']')