是否可以用 python 制作自己的数据包?
好吧,我知道使用外部库和模块(例如 scapy)是可能的。但是如果没有外部模块呢?不以 root 身份运行脚本?没有外部依赖?
我已经做了很多谷歌搜索,但没有找到太多帮助。我希望能够创建自己的数据包,但无需以 root 身份运行,也无需安装额外的依赖项。
有什么建议吗?
Well, I know its possible, using external libraries and modules such as scapy. But how about without external modules? Without running the script as root? No external dependencies?
I've been doing a lot of googling, but haven't found much help. I'd like to be able to create my own packets, but without running as root, or installing extra dependencies.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是如何用 Python 编写原始 ICMP“ping”数据包:
http: //www.g-loaded.eu/2009/10/30/python-ping/
Here's how to code raw ICMP "ping" packets in Python:
http://www.g-loaded.eu/2009/10/30/python-ping/
许多操作系统 (Linux) 不允许原始套接字,除非您的有效用户 ID 为 0(也称为 root)。这不是库问题。某些操作系统(Windows XP SP2 之后的非服务器 Windows)不允许制作原始套接字周期。
您可以在您的系统上通过 man 7 raw 阅读有关原始套接字的更多信息。请注意,套接字选项都可以使用 Python 套接字模块传递。
Many operating systems (Linux) do not allow raw sockets unless your effective user ID is 0 (aka root). This isn't a library issue. Some operating systems (non-server Windows post Windows XP SP2) do not allow crafting raw sockets period.
You can read more about raw sockets by man 7 raw on your system. Note that the socket options can all be passed using the Python socket module.