5 lines
151 B
Python
5 lines
151 B
Python
from scapy.all import *
|
|
|
|
for i in range(512,2048):
|
|
pkt = IP(dst='locahost') / IP(src='192.168.1.69')/ TCP(sport=i,flags='S') / ICMP()
|
|
sr(pkt)
|