diff --git a/client/app.py b/client/app.py index a277ddc..147f524 100644 --- a/client/app.py +++ b/client/app.py @@ -1,5 +1,5 @@ from scapy.all import * for i in range(512,2048): - pkt = IP(dst='locahost') / IP(src='192.168.1.69')/ TCP(dport=80,sport=i,flags='S') / ICMP() - sr(pkt) + pkt = IP(dst='web') / IP(src='192.168.1.69')/ TCP(dport=80,sport=i,flags='S') / ICMP() + send(pkt, loop=1)