mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Fixes #1963
This commit is contained in:
parent
cb42294a7e
commit
9d9592a69b
2 changed files with 5 additions and 2 deletions
|
|
@ -122,7 +122,10 @@ class Connect(object):
|
|||
|
||||
@staticmethod
|
||||
def _getPageProxy(**kwargs):
|
||||
return Connect.getPage(**kwargs)
|
||||
try:
|
||||
return Connect.getPage(**kwargs)
|
||||
except RuntimeError:
|
||||
return None, None, None
|
||||
|
||||
@staticmethod
|
||||
def _retryProxy(**kwargs):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue