first commit
This commit is contained in:
10
Sniffing_Spoofing/volumes/spoofer.py
Normal file
10
Sniffing_Spoofing/volumes/spoofer.py
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
from scapy.all import *
|
||||
|
||||
print("Spoofing ICMP echo request from 1.2.3.4 to 10.9.0.5...")
|
||||
a = IP()
|
||||
a.src = '1.2.3.4'
|
||||
a.dst = '10.9.0.5'
|
||||
b = ICMP()
|
||||
p = a/b
|
||||
send(p)
|
||||
Reference in New Issue
Block a user