MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / search

Function search

lib/utils/search.py:190–210  ·  view source on GitHub ↗
(dork)

Source from the content-addressed store, hash-verified

188
189@stackedmethod
190def 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
212def setHTTPHandlers(): # Cross-referenced function
213 raise NotImplementedError

Callers 1

retrieveFunction · 0.90

Calls 5

pushValueFunction · 0.90
getSafeExStringFunction · 0.90
popValueFunction · 0.90
_searchFunction · 0.85
setHTTPHandlersFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…