knownsec / pocsuite3

pocsuite3 is an open-sourced remote vulnerability testing framework developed by the Knownsec 404 Team.
https://pocsuite.org
Other
3.64k stars 780 forks source link

编写PoC文件,install_requires添加第三方库时的一点小问题 #379

Closed fantasy-2046 closed 1 year ago

fantasy-2046 commented 1 year ago

编写PoC文件,有时需要添加第三方库 某些特殊情况下 比如安装第三方库时使用的命令是pip install python-xxxx库 调用时是from pyxxxxx库 import xxxx (这里成了pyxxxx) (我也不知道为什么会这样。。。) install_requires = [''] 这里填写python-xxxx时会一直报错(已安装),填写pyxxxx则不会(但这里不是安装的命令)

我的解决方法是 打开 pocsuite3/lib/core/register.py,找到 第57行 import(import_name) 注释掉。

fantasy-2046 commented 1 year ago

又看了源码,可以写成python-xxxx:pyxxxx 抱歉,一开始没看太懂。。。eee