請問我用scapy抓包,好像網頁回傳的資訊不多的時候能正常顯示,網頁回傳的資訊一旦多了,就成了下面這樣,請問是什么問題?
dpkg = sniff(filter="host 192.168.1.100 and tcp",iface="Intel(R) Ethernet Connection (2) I219-LM",prn=deal,count=0)
def deal(pkt):
try:
temp=(pkt.getlayer(Raw).load)
print("temp:"+str(temp))
......
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/263948.html
