Skip to content

Commit aaed85c

Browse files
committed
OAST_Listen_Burp_Colaborator.py add decode
Signed-off-by: Timothée Ruffenach <timruff@gmx.com>
1 parent a126174 commit aaed85c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

standalone/OAST_Listen_Burp_Colaborator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def convertBase64(text):
6161
textBase64 += '=' * (4-padding)
6262
try:
6363
# Decode string
64-
textDecode = base64.b64decode(textBase64)
64+
textDecode = base64.b64decode(textBase64).decode("ascii")
6565
return textDecode
6666
except Exception as e:
6767
if str(e) == 'Incorrect padding':

0 commit comments

Comments
 (0)