exploits
exploits copied to clipboard
Can only concatenate str
python joomblah.py http://10.xx.xx.xx.
Traceback (most recent call last):
File "joomblah.py", line 186, in
Try explicitly casting the variable. eg. result += str(value)
Try explicitly casting the variable. eg. result += str(value)
Changing this, the script runs without an error, but the output is not satisfying at all. It looks like something is missing/cut off:
python3 joomblah.py http://10.XXX.XXX.XXX/
[-] Fetching CSRF token
[-] Testing SQLi
- Found table: b'fb9j5_users'
- Extracting users from b'fb9j5_users'
- Extracting sessions from b'fb9j5_usession
Getting the same error!
Do any one found the solution.
Run the script using python2 instead of python3 if you get an error message about a missing request module, install it via pip.
- Install pip with Python2.7
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.pypython2.7 get-pip.py - Install the "requests" module
python2.7 -m pip install requests - Run the exploit
python2.7 joomblah.py <IP>
Had the same issue. Created a pull request which contains a python3-compatible joombla.py file.
https://github.com/XiphosResearch/exploits/pull/18
1.Install pip with Python2.7 ### curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
python2.7 get-pip.py
2.Install the "requests" module
python2.7 -m pip install requests
3.Run the exploit ### python2.7 joomblah.py <IP>
Thanks timyc00k i just changed the first step.
- Install pip with Python2.7
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.pypython2.7 get-pip.py- Install the "requests" module
python2.7 -m pip install requests- Run the exploit
python2.7 joomblah.py <IP>
solved.. thanks