mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-07-05 20:15:21 -04:00
10 lines
No EOL
168 B
Python
Executable file
10 lines
No EOL
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() |