0xInfection / TIDoS-Framework

The Offensive Manual Web Application Penetration Testing Framework.
GNU General Public License v3.0
1.76k stars 388 forks source link

No module named xmpp #90

Closed autoruntesting closed 4 years ago

autoruntesting commented 4 years ago

1.sna@Sis:~/TIDoS-Framework# tidos Traceback (most recent call last): File "/opt/tidos/tidos.py", line 14, in from core.tidos_main import File "/opt/tidos/core/tidos_main.py", line 37, in from core.Vulnlysis.vuln import File "/opt/tidos/core/Vulnlysis/vuln.py", line 17, in from core.Vulnlysis.Oth_Bugs.othbugs import File "/opt/tidos/core/Vulnlysis/Oth_Bugs/othbugs.py", line 25, in from xmppbrute import File "modules/0x03-Vulnerability+Analysis/0x03-OtherWebBugs/xmppbrute.py", line 18, in from xmpp import Client ImportError: No module named xmpp

  1. :~/TIDoS-Framework# sudo apt-get install -y python-xmpp Reading package lists... Done Building dependency tree
    Reading state information... Done E: Unable to locate package python-xmpp

3.This my error how to fix it ?

johntyty912 commented 4 years ago

try this:

git clone https://github.com/normanr/xmpppy.git
cd xmpppy
python setup.py install
autoruntesting commented 4 years ago

thanks