在kali中安装ghost-phisher工具时出错

在kali中安装ghost-phisher工具时出错

你好,我正在尝试使用 github 在 kali 中安装 Ghost-phisher 工具,我按照以下命令操作:

安装

 git clone https://github.com/savio-code/ghost-phisher (Download Ghost Phisher)



cd ghost-phisher/Ghost-Phisher

sudo python ghost.py 

(运行 Ghost Phisher)^^这里显示此错误:

Traceback(most recent call last):
File"ghost.py",line 7,in <module>
from PyQt4 import QtCore, QtGui
ImportError: No module named PyQt4

更新:cd ghost-phisher && git pull如果前一个命令有效,这应该是最后一个命令

pip install PyQt4
python -m pip install PyQt4
sudo apt install python-pip
sudo apt update

他们都说无法找到包裹

答案1

根据GitHub 文档您需要安装并配置 PyQT4 作为使用 Ghost-phisher 的先决条件。要获取 PyQT4,您需要安装它从源头或购买商业许可证。在设置 PyQT4 之前,您需要安装 SIP。

使用安装 SIP pip install sip

这是一个链接有关如何安装和配置 PyQT4 的文档。

你需要下载解压它,然后检查自述文件以获取有关您的平台的信息。正如他们指出的,您需要注意以下事项:

注意:构建 PyQt4 v4.12.2 或更高版本时,必须使用类似于以下的命令行配置 SIP 以创建 sip 模块的私有副本:

python configure.py --sip-module PyQt4.sip --no-dist-info --no-tools

我无法说出您需要具体配置什么,因为这取决于您的环境和需求。请严格按照文档进行操作,并分别参考River Bank的Computing对PyQT4的支持和ghost-phisher的开发者对它的支持。

祝你好运!

相关内容