From 4259fa1b2754e6cf18cf78f307d887429d74a3a0 Mon Sep 17 00:00:00 2001 From: go-outside-helper <138340846+go-outside-helper@users.noreply.github.com> Date: Thu, 14 Mar 2024 17:53:46 +0100 Subject: [PATCH] Update tcp_handshake.py --- Network_and_802.11/scapy/tcp_handshake.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)