📜  在 scapy 中编辑数据包 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:20.083000             🧑  作者: Mango

代码示例1
from scapy import *

def chgSend(x):
    x[IP].dst = '192.168.1.1'
    send(x)
while 1:
    sniff(prn=chgSend)