one bug fix for Host header (value should be without port number); one improvement for --tables - when no tables ask user if he wants to brute force them; one tweak - adding kb.ignoreTimeout for --tables

This commit is contained in:
Miroslav Stampar
2011-05-22 09:48:46 +00:00
parent 2ea613b170
commit 9b2623514a
3 changed files with 34 additions and 4 deletions

View File

@@ -187,7 +187,7 @@ class Connect:
if kb.proxyAuthHeader:
headers[HTTPHEADER.PROXY_AUTHORIZATION] = kb.proxyAuthHeader
headers[HTTPHEADER.HOST] = host or urlparse.urlparse(url).netloc
headers[HTTPHEADER.HOST] = host or urlparse.urlparse(url).netloc.split(':')[0]
if auxHeaders:
for key, item in auxHeaders.items():