2014-12-24 12:04:24 -05:00

10 lines
168 B
Python
Executable File

#!/usr/bin/env python
__author__ = "bt3"
from scapy.all import *
packet = IP(dst="192.168.1.114")/ICMP()/"Helloooo!"
#send(packet, loop=1)
send(packet)
packet.show()