mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Major bug fix (reported by Thierry Zoller)
This commit is contained in:
parent
4928c684b3
commit
147e14356d
2 changed files with 5 additions and 2 deletions
|
|
@ -146,8 +146,6 @@ class Connect:
|
|||
|
||||
conf.redirectHandled = True
|
||||
|
||||
return Connect.__getPageProxy(**kwargs)
|
||||
|
||||
# Reset the number of connection retries
|
||||
conf.retriesCount = 0
|
||||
|
||||
|
|
@ -207,7 +205,9 @@ class Connect:
|
|||
warnMsg = "connection timed out while trying "
|
||||
warnMsg += "to get error page information (%d)" % e.code
|
||||
logger.warn(warnMsg)
|
||||
|
||||
return None, None
|
||||
|
||||
code = e.code
|
||||
status = e.msg
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue