We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a126174 commit aaed85cCopy full SHA for aaed85c
standalone/OAST_Listen_Burp_Colaborator.py
@@ -61,7 +61,7 @@ def convertBase64(text):
61
textBase64 += '=' * (4-padding)
62
try:
63
# Decode string
64
- textDecode = base64.b64decode(textBase64)
+ textDecode = base64.b64decode(textBase64).decode("ascii")
65
return textDecode
66
except Exception as e:
67
if str(e) == 'Incorrect padding':
0 commit comments