标签: html python-3.x http scapy
我正在使用window,python 3.7.1和scapy。 我正在尝试嗅探HTML代码。我正在使用此代码:
from scapy.all import * sniff(prn = lambda x: x.show())
但是运行此程序时我看不到任何HTML代码打印(尽管我看到了其他数据包)。 如何嗅探实际的html代码? (我愿意更改到其他库)