(dork)
| 188 | |
| 189 | @stackedmethod |
| 190 | def search(dork): |
| 191 | pushValue(kb.choices.redirect) |
| 192 | kb.choices.redirect = REDIRECTION.YES |
| 193 | |
| 194 | try: |
| 195 | return _search(dork) |
| 196 | except SqlmapBaseException as ex: |
| 197 | if conf.proxyList: |
| 198 | logger.critical(getSafeExString(ex)) |
| 199 | |
| 200 | warnMsg = "changing proxy" |
| 201 | logger.warning(warnMsg) |
| 202 | |
| 203 | conf.proxy = None |
| 204 | |
| 205 | setHTTPHandlers() |
| 206 | return search(dork) |
| 207 | else: |
| 208 | raise |
| 209 | finally: |
| 210 | kb.choices.redirect = popValue() |
| 211 | |
| 212 | def setHTTPHandlers(): # Cross-referenced function |
| 213 | raise NotImplementedError |
no test coverage detected
searching dependent graphs…