FireSheep 如何以混杂模式打开设备?
FireSheep 能够使用 pcap 在混杂模式下监听网络上的其他计算机。但混杂模式需要 root 权限,或者至少需要访问 *nix 机器上的 /dev/bpf*。这是怎么做到的? Firefox 扩展是否需要 root 权限运行?
FireSheep is able to use pcap in promiscuous mode to listen to other computers on the network. But promiscous mode requires root privileges, or at least access to /dev/bpf* on *nix machines. How is this done? Do Firefox extensions run with root privs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它具有 run_privileged 方法,可以使用特定于操作系统的机制以 root 身份运行所需的操作,例如
AuthorizationCreate
(OS X),pkexec
(Linux)(但这显然还不支持),当然还有 Windows (因为几乎每个人无论如何都以管理员身份运行)。It has run_privileged methods which run the required operations as root using OS-specific mechanisms such as
AuthorizationCreate
(OS X),pkexec
(Linux) (but this is apparently not supported, yet), and of coursereturn true
on Windows (since pretty much everyone runs as admin anyway).