mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 02:59:08 -04:00
11 lines
171 B
Python
11 lines
171 B
Python
#!/usr/bin/env python
|
|
|
|
__author__ = "bt3gl"
|
|
|
|
from scapy.all import *
|
|
|
|
packet = IP(dst="192.168.1.114")/ICMP()/"Helloooo!"
|
|
#send(packet, loop=1)
|
|
send(packet)
|
|
packet.show()
|