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

Method search

plugins/generic/search.py:625–640  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

623 logger.warning(warnMsg)
624
625 def search(self):
626 if Backend.getIdentifiedDbms() in UPPER_CASE_DBMSES:
627 for item in ('db', 'tbl', 'col'):
628 if getattr(conf, item, None):
629 setattr(conf, item, getattr(conf, item).upper())
630
631 if conf.col:
632 self.searchColumn()
633 elif conf.tbl:
634 self.searchTable()
635 elif conf.db:
636 self.searchDb()
637 else:
638 errMsg = "missing parameter, provide -D, -T or -C along "
639 errMsg += "with --search"
640 raise SqlmapMissingMandatoryOptionException(errMsg)

Callers 15

mainFunction · 0.45
do_REQUESTMethod · 0.45
attackDumpedTableFunction · 0.45
hashRecognitionFunction · 0.45
crackHashFileFunction · 0.45
pivotDumpTableFunction · 0.45
crawlThreadFunction · 0.45
crawlFunction · 0.45
safechardecodeFunction · 0.45
check_authenticationFunction · 0.45
clientFunction · 0.45
checkMethod · 0.45

Calls 5

searchColumnMethod · 0.95
searchTableMethod · 0.95
searchDbMethod · 0.95
getIdentifiedDbmsMethod · 0.80

Tested by 3

_orderByTestFunction · 0.36
_findUnionCharCountFunction · 0.36
_fuzzUnionColsFunction · 0.36