mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-14 17:12:53 -07:00
minor bug fix
This commit is contained in:
parent
2718f9c513
commit
f5c1f9464a
2 changed files with 3 additions and 11 deletions
10
HTTPProxy.py
10
HTTPProxy.py
|
@ -39,7 +39,7 @@ class WPADScript(Packet):
|
|||
("Code", "HTTP/1.1 200 OK\r\n"),
|
||||
("ServerType", "Server: Microsoft-IIS/6.0\r\n"),
|
||||
("Date", "Date: Wed, 12 Sep 2012 13:06:55 GMT\r\n"),
|
||||
("Type", "Content-Type: text/html\r\n"),
|
||||
("Type", "Content-Type: application/x-ns-proxy-autoconfig\r\n"),
|
||||
("PoweredBy", "X-Powered-By: ASP.NET\r\n"),
|
||||
("ContentLen", "Content-Length: "),
|
||||
("ActualLen", "76"),
|
||||
|
@ -63,14 +63,6 @@ class IIS_Auth_407_Ans(Packet):
|
|||
("CRLF", "\r\n"),
|
||||
])
|
||||
|
||||
#HTTP Packet Granted auth.
|
||||
class IIS_Proxy_Auth_Failed(Packet):
|
||||
fields = OrderedDict([
|
||||
("Code", "HTTP/1.1 500 Server Error\r\n"),
|
||||
])
|
||||
def calculate(self):
|
||||
self.fields["ActualLen"] = len(str(self.fields["Payload"]))
|
||||
|
||||
#HTTP NTLM packet.
|
||||
class IIS_407_NTLM_Challenge_Ans(Packet):
|
||||
fields = OrderedDict([
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue