mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-20 13:23:38 -07:00
Merge pull request #254 from syntricks/patch-1
Fixing soft failure which results in missed SMTP credential interception
This commit is contained in:
commit
6b1f53a6f4
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class ESMTP(BaseRequestHandler):
|
||||||
data = self.request.recv(1024)
|
data = self.request.recv(1024)
|
||||||
|
|
||||||
if data:
|
if data:
|
||||||
try: Password = b64decode(data)
|
try: Password = b64decode(data).decode('latin-1')
|
||||||
except: Password = data
|
except: Password = data
|
||||||
|
|
||||||
SaveToDb({
|
SaveToDb({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue