(**kwargs)
| 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): |
no test coverage detected