diff --git a/client/app.py b/client/app.py index e69de29..07f1740 100644 --- a/client/app.py +++ b/client/app.py @@ -0,0 +1,5 @@ +from scapy.all import * + +for i in range(512,2048): + pkt = IP(dst='locahost') / IP(src='192.168.1.69')/ TCP(sport=1200,flags='S') / ICMP() + sr(pkt)