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 570d173 commit 458c694Copy full SHA for 458c694
impacket/examples/ntlmrelayx/servers/httprelayserver.py
@@ -186,6 +186,11 @@ def serve_image(self):
186
self.wfile.write(imgFile_data)
187
188
def strip_blob(self, proxy):
189
+ # Get the body of the request if any
190
+ # Otherwise, successive requests will not beb handled properly
191
+ # Was added in July 29, 2020 branch e59ff69 and removed during
192
+ # restructuring March 30, 2022 branch a168273. Needed for
193
+ # relaying the request during WSUS relay attacks
194
if PY2:
195
if proxy:
196
proxyAuthHeader = self.headers.getheader('Proxy-Authorization')
0 commit comments