-
Notifications
You must be signed in to change notification settings - Fork 587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can only concatenate str #17
Comments
Try explicitly casting the variable. |
Changing this, the script runs without an error, but the output is not satisfying at all. It looks like something is missing/cut off:
|
Getting the same error! |
Do any one found the solution. |
Run the script using python2 instead of python3 |
|
Had the same issue. Created a pull request which contains a python3-compatible joombla.py file. |
1.Install pip with Python2.7 python2.7 get-pip.py2.Install the "requests" module python2.7 -m pip install requests3.Run the exploit Thanks timyc00k i just changed the first step. |
solved.. thanks |
This should work :
|
python joomblah.py http://10.xx.xx.xx.
Traceback (most recent call last):
File "joomblah.py", line 186, in
sys.exit(main("http://IP:8080/joomla"))
File "joomblah.py", line 183, in main
pwn_joomla_again(options)
File "joomblah.py", line 147, in pwn_joomla_again
tables = extract_joomla_tables(options, sess, token)
File "joomblah.py", line 74, in extract_joomla_tables
result = joomla_370_sqli_extract(options, sess, token, "TABLE_NAME", "FROM information_schema.tables WHERE TABLE_NAME LIKE 0x257573657273 LIMIT " + str(offset) + ",1" )
File "joomblah.py", line 46, in joomla_370_sqli_extract
result += value
TypeError: can only concatenate str (not "bytes") to str
The text was updated successfully, but these errors were encountered: