scapy No such device exists (No such device exists)

2023-11-20 19:36
文章标签 device exists scapy

本文主要是介绍scapy No such device exists (No such device exists),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

使用python编写一个小的网络程序时,程序如下:

import scapy.all as scapydef scan(ip):arp_request = ARP(pdst=ip)arp_request.show()broadcast = scapy.Ether(dst= "ff:ff:ff:ff:ff:ff")arq_request_broadcast = broadcast/arp_requestanswered,unanswered = scapy.srp(arq_request_broadcast, timeout=1)print(answered.summary)if __name__ == '__main__':scan("192.168.0.105")

总是报错  “scapy No such device exists (No such device exists)”

根据错误信息的提示,大概了解了,是由于winpcap的服务没有启动导致的。

首先,确保本地机器已经安装了winpcap。打开程序控制面板

其次,要找到winPcap的安装位置,这里可以使用一个比较好用的工具Everything,输入winpcap,找到winpcap的安装位置,如下:

然后,再使用命令行工具,进入到指定位置,运行rpcap.exe, 如下图:

这里虽然显示按CTRL+C停止服务器,但是,其实,按了CTRL+C之后,依然可以继续执行程序。

最后,再执行程序试试,就可以正确地执行了。

这篇关于scapy No such device exists (No such device exists)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/396939

相关文章

Usb Audio Device Descriptor(10) Hid Device

对于 Standard Interface Descriptor, 当 bInterfaceClass=0x03时,即为HID设备。Standard Interface Descriptor如下 struct usb_standard_interface_descriptor{U8 bLength; /*Size of this descriptor in bytes*/U8 bDescrip

src/pyaudio/device_api.c:9:10: fatal error: portaudio.h: 没有那个文件或目录

(venv) shgbitai@shgbitai-C9X299-PGF:~/pythonworkspace/ai-accompany$ pip install pyaudio sounddeviceCollecting pyaudioDownloading PyAudio-0.2.14.tar.gz (47 kB)━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

2015多校联合训练第一场Tricks Device(hdu5294)

题意:给一个无向图,给起点s,终点t,求最少拆掉几条边使得s到不了t,最多拆几条边使得s能到t 思路: 先跑一边最短路,记录最短路中最短的边数,总边数-最短边数就是第二个答案 第一个答案就是在最短路里面求最小割,也就是求最大流,然后根据最短路在建个新图,权为1,跑一边网络流 模板题,以后就用这套模板了 #include <iostream>#include <cstdio>#incl

Linux block_device gendisk和hd_struct到底是个啥关系

本文的源码版本是Linux 5.15版本,有图有真相: 1.先从块设备驱动说起 安卓平台有一个非常典型和重要的块设备驱动:zram,我们来看一下zram这个块设备驱动加载初始化和swapon的逻辑,完整梳理完这个逻辑将对Linux块设备驱动模型有深入的理解。 zram驱动加载的时候会调用zram_add函数,源码如下: 1887/*1888 * Allocate and initia

linux驱动模型 -- bus,device,device_driver之间的关系

Linux 设备驱动模型中,按照层次的组织结构,抽象成总线(struct bus_type),设备(struct device),驱动(struct device_driver)的层次组织形式,这是最原始的抽象结构,在此基础之上,根据不同类型的总线/设备/驱动,有形成了更高层次的组织结构,如 virtio总线(struct bus_type virtio_bus),virtio设备(

in 和 exists 的比较

EXISTS的执行流程      select * from t1 where exists ( select null from t2 where y = x ) 可以理解为:   for x in ( select * from t1 )   loop       if ( exists ( select null from t2 where y = x.x )       the

Win10 - 即插即用的external audio device detected问题

问题     有些牌子的笔记本,在win10下每次插入外设耳机,都会跳出带有 external audio device detected 字样的音频输出设备选择框需要选择 方案     1、在开始菜单选择 运行 ,输入 regedit 后回车打开注册表     2、在注册表中定位到 HKEY_CURRENT_USER\SOFTWARE\Realtek\Audio\RtkNGUI64

对付error: insufficient permissions for device

当输入adb shell    遇到:error: insufficient permissions for device    首先:adb kill-server    然后:sudo adb devices即可

解决Node.js调用fs.renameSync报错的问题(Error: EXDEV, cross-device link not permitted)

在写一个文件上传的功能时候,调用fs.renameSync方法错误 出错 代码所在如下: 1 function upload(response,request){ 2 console.log("upload called"); 3 var form = new formidable.IncomingForm(); 4 console.log("about t

git pull失败提示fatal: Unable to create 'E:/job/tpaas-web/.git/index.lock': File exists.

git 提交时失败   提示如下错误:fatal: Unable to create 'E:/job/tpaas-web/.git/index.lock': File exists.   解决方法:删除.lock文件       rm -f ./.git/index.lock 命令执行后再次pull