0

我是网络新手(我正在尝试为 ICMP 启动环回接口,我得到了什么:

 Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from scapy.all import *
WARNING: No route found for IPv6 destination :: (no default route?)
>>> conf.L3socket
<L3dnetSocket: read/write packets at layer 3 using libdnet and libpcap>
>>> conf.L3socket=L3RawSocket
>>> sr1(IP(dst="127.0.0.1")/ICMP())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python25\lib\site-packages\scapy\sendrecv.py", line 334, in sr1
    s=conf.L3socket(filter=filter, nofilter=nofilter, iface=iface)
  File "C:\Python25\lib\site-packages\scapy\supersocket.py", line 63, in __init_
_
    self.outs = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_RA
W)
  File "c:\Python25\lib\socket.py", line 159, in __init__
    _sock = _realsocket(family, type, proto)
socket.error: (10013, 'Permission denied')

我做错了什么?

4

1 回答 1

0

您需要以 root 身份启动 scapy 才能使用原始套接字发送消息。

由于您运行的是 Windows,因此您需要弄清楚如何以管理员身份启动 scapy。

于 2013-01-31T14:27:49.897 回答