Skip to content
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

Open
ghost opened this issue Apr 25, 2020 · 9 comments · May be fixed by #22
Open

Can only concatenate str #17

ghost opened this issue Apr 25, 2020 · 9 comments · May be fixed by #22

Comments

@ghost
Copy link

ghost commented Apr 25, 2020

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

@somesh-bhandarkar
Copy link

Try explicitly casting the variable.
eg. result += str(value)

@stempst0r
Copy link

stempst0r commented Sep 22, 2020

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

@samjain2907
Copy link

Getting the same error!

@mild0wl
Copy link

mild0wl commented Oct 22, 2020

Do any one found the solution.

@Scytex
Copy link

Scytex commented Oct 24, 2020

Run the script using python2 instead of python3
if you get an error message about a missing request module, install it via pip.

@0xhsn
Copy link

0xhsn commented Nov 8, 2020

  1. Install pip with Python2.7
    curl https://bootstrap.pypa.io/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>

@mats-codes
Copy link

Had the same issue. Created a pull request which contains a python3-compatible joombla.py file.

#18

@owaisqaa
Copy link

owaisqaa commented May 8, 2021

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

Thanks timyc00k i just changed the first step.

@theperrinpages
Copy link

  1. Install pip with Python2.7
    curl https://bootstrap.pypa.io/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>

solved.. thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

9 participants