Answers for "edit packet in scapy"

0

edit packet in scapy

from scapy import *

def chgSend(x):
    x[IP].dst = '192.168.1.1'
    send(x)
while 1:
    sniff(prn=chgSend)
Posted by: Guest on July-26-2021

Browse Popular Code Answers by Language