Skip to content

Update joomblah.py #23

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update joomblah.py
Line 46 updated:

result += value.decode()
  • Loading branch information
Su8-z3r0 authored Jul 20, 2023
commit 3916c9f9cc33c2b7f846a07dae8c3a474d1a4e12
2 changes: 1 addition & 1 deletion Joomblah/joomblah.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def joomla_370_sqli_extract(options, sess, token, colname, morequery):
print(" [!] Failed to retrieve string for query:", sqli)
return None
value = binascii.unhexlify(value)
result += value
result += value.decode()
offset += len(value)
return result

Expand Down