mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Major bug fix (reported by Thierry Zoller)
This commit is contained in:
@@ -307,6 +307,9 @@ Anthony Zboralski <anthony.zboralski@bellua.com>
|
|||||||
for reporting a few minor bugs
|
for reporting a few minor bugs
|
||||||
for donating to sqlmap development
|
for donating to sqlmap development
|
||||||
|
|
||||||
|
Thierry Zoller <thierry@zoller.lu>
|
||||||
|
for reporting a couple of major bugs
|
||||||
|
|
||||||
fufuh <fufuh@users.sourceforge.net>
|
fufuh <fufuh@users.sourceforge.net>
|
||||||
for reporting a bug when running on Windows
|
for reporting a bug when running on Windows
|
||||||
|
|
||||||
|
|||||||
@@ -146,8 +146,6 @@ class Connect:
|
|||||||
|
|
||||||
conf.redirectHandled = True
|
conf.redirectHandled = True
|
||||||
|
|
||||||
return Connect.__getPageProxy(**kwargs)
|
|
||||||
|
|
||||||
# Reset the number of connection retries
|
# Reset the number of connection retries
|
||||||
conf.retriesCount = 0
|
conf.retriesCount = 0
|
||||||
|
|
||||||
@@ -207,7 +205,9 @@ class Connect:
|
|||||||
warnMsg = "connection timed out while trying "
|
warnMsg = "connection timed out while trying "
|
||||||
warnMsg += "to get error page information (%d)" % e.code
|
warnMsg += "to get error page information (%d)" % e.code
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return None, None
|
return None, None
|
||||||
|
|
||||||
code = e.code
|
code = e.code
|
||||||
status = e.msg
|
status = e.msg
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user