MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / _getPageProxy

Method _getPageProxy

lib/request/connect.py:156–167  ·  view source on GitHub ↗
(**kwargs)

Source from the content-addressed store, hash-verified

154
155 @staticmethod
156 def _getPageProxy(**kwargs):
157 try:
158 if (len(inspect.stack()) > sys.getrecursionlimit() // 2): # Note: https://github.com/sqlmapproject/sqlmap/issues/4525
159 warnMsg = "unable to connect to the target URL"
160 raise SqlmapConnectionException(warnMsg)
161 except (TypeError, UnicodeError):
162 pass
163
164 try:
165 return Connect.getPage(**kwargs)
166 except RuntimeError:
167 return None, None, None
168
169 @staticmethod
170 def _retryProxy(**kwargs):

Callers 2

_retryProxyMethod · 0.80
getPageMethod · 0.80

Calls 2

getPageMethod · 0.80

Tested by

no test coverage detected