mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-06 04:51:23 -07:00
parent
de20dcf408
commit
dc33d1f858
1 changed files with 2 additions and 2 deletions
4
servers/HTTP.py
Executable file → Normal file
4
servers/HTTP.py
Executable file → Normal file
|
@ -224,8 +224,8 @@ def PacketSequence(data, client, Challenge):
|
|||
'module': 'HTTP',
|
||||
'type': 'Basic',
|
||||
'client': client,
|
||||
'user': ClearText_Auth.decode('latin-1').split(':')[0],
|
||||
'cleartext': ClearText_Auth.decode('latin-1').split(':')[1],
|
||||
'user': ClearText_Auth.decode('latin-1').split(':', maxsplit=1)[0],
|
||||
'cleartext': ClearText_Auth.decode('latin-1').split(':', maxsplit=1)[1],
|
||||
})
|
||||
|
||||
if settings.Config.Force_WPAD_Auth and WPAD_Custom:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue