diff --git a/Network_and_802.11/scapy/tcp_handshake.py b/Network_and_802.11/scapy/tcp_handshake.py index 8b767cd..fafe85b 100644 --- a/Network_and_802.11/scapy/tcp_handshake.py +++ b/Network_and_802.11/scapy/tcp_handshake.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "bt3" +__author__ = "Mia Stein" from scapy.all import * @@ -14,4 +14,4 @@ ACK = TCP(sport=1024, dport=80, flags='A', seq=12346, ack=ack) send(ip/ACK) PUSH = TCP(sport=1024, dport=80, flags='', seq=12346, ack=ack) data = "HELLO!" -send(ip/PUSH/data) \ No newline at end of file +send(ip/PUSH/data)