Python-Scapy or the like-How can I create an HTTP GET request at the packet level
If you want to do a full three-way handshake, you’ll have to do it manually. Start with your SYN packet: >>> syn = IP(dst=”www.google.com”) / TCP(dport=80, flags=”S”) >>> syn <IP frag=0 proto=tcp dst=Net(‘www.google.com’) |<TCP dport=www flags=S |>> Then receive the SYN-ACK packet from the server, sr1 works. Then send your HTTP GET request: >>> syn_ack … Read more