Sending packet with python and scapy to local address doesn't work – Ubuntu
I am trying to send a udp packet to a local ip address. This is my example code: from scapy.all import * if __name__ == "__main__": send(IP(dst="127.0.0.1")/UDP(sport=19600,dport=39600)/"abc") I've started netcat to catch what I am going to send: nc -ul…