2024-03-14 17:26:53 +01:00

10 lines
165 B
Python

#!/usr/bin/env python
__author__ = "Mia Stein"
from scapy.all import *
str(IP())
a = Ether()/IP(dst="www.google.com")/TCP()/"GET /index.html HTTP/1.1"
hexdump(a)