diff options
Diffstat (limited to 'packet_sender.py')
-rw-r--r-- | packet_sender.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/packet_sender.py b/packet_sender.py deleted file mode 100644 index 7703a5f..0000000 --- a/packet_sender.py +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | from scapy.all import Ether, IP, UDP, sendp | ||
2 | |||
3 | input_ip = input("Enter destination IP: ") | ||
4 | |||
5 | p = Ether()/IP(dst=input_ip, src='223.255.254.115')/UDP(b"A Payload") | ||
6 | |||
7 | sendp(p) | ||