mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2025-09-07 20:32:55 +02:00
oops
This commit is contained in:
@ -1778,10 +1778,10 @@ class SMTPHeadersAnalysis:
|
|||||||
try:
|
try:
|
||||||
out = base64.b64decode(value)
|
out = base64.b64decode(value)
|
||||||
except:
|
except:
|
||||||
try:
|
try:
|
||||||
out = base64.b64decode(value + b'=' * (-len(value) % 4))
|
out = base64.b64decode(value + b'=' * (-len(value) % 4))
|
||||||
except:
|
except:
|
||||||
out = value
|
out = value
|
||||||
|
|
||||||
if enc:
|
if enc:
|
||||||
out = out.decode(errors = 'ignore')
|
out = out.decode(errors = 'ignore')
|
||||||
|
Reference in New Issue
Block a user