sec-pentesting-toolkit/Network_and_802.11/scapy/send_packet.py
2024-11-04 19:30:49 +07:00

10 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()