Python - Invio Pacchetti
SENDPACKET in Python:
https://iplab.naist.jp/class/2018/materials/hands-on/layer-2-raw-socket/
https://inc0x0.com/tcp-ip-packets-introduction/tcp-ip-packets-3-manually-create-and-send-raw-tcp-ip-packets/
Con libreria scapy:
https://www.freecodecamp.org/news/how-to-use-scapy-python-networking/
Esempio:
from scapy.all import send, IP, ICMP
send(IP(src="10.0.99.100",dst="10.1.99.100")/ICMP()/"Hello World")