From 7a4a2792607eb564a853c02ab165282127bb4b3c Mon Sep 17 00:00:00 2001 From: Edward Shornock Date: Sun, 12 Dec 2021 15:31:44 +0200 Subject: [PATCH] Patch Joomblah to support both Python 2 and Python 3 --- Joomblah/joomblah.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Joomblah/joomblah.py b/Joomblah/joomblah.py index 3a40d1d..c946ee6 100644 --- a/Joomblah/joomblah.py +++ b/Joomblah/joomblah.py @@ -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 += str(value.decode('utf-8')) offset += len(value) return result