Scapy 仅发送 ICMP 数据包有时会返回警告

Scapy sending ICMP packet only sometimes returns a warning

提问人:Itamar Milchtajch 提问时间:4/19/2022 最后编辑:jonrsharpeItamar Milchtajch 更新时间:4/19/2022 访问量:117

问:

我制作了一个像 nslookup 这样的 python 代码,但有时当我运行它时,它会返回以下警告:

WARNING: Mac address to reach destination not found. Using broadcast.

我不知道为什么它只偶尔发生,而不是一直发生。

from scapy.all import *
import sys

fullmsg = IP(dst=sys.argv[1]) / ICMP(type=8)
ans=sr1(fullmsg,verbose=0)
print(f"The IP of the domain is  {ans[IP].src}")
python-3.x 警告 scapy icmp

评论


答: 暂无答案