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

Function _addPageTextWords

lib/utils/brute.py:48–61  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

46from lib.request import inject
47
48def _addPageTextWords():
49 wordsList = []
50
51 infoMsg = "adding words used on web page to the check list"
52 logger.info(infoMsg)
53 pageWords = getPageWordSet(kb.originalPage)
54
55 for word in pageWords:
56 word = word.lower()
57
58 if len(word) > 2 and not word[0].isdigit() and word not in wordsList:
59 wordsList.append(word)
60
61 return wordsList
62
63@stackedmethod
64def tableExists(tableFile, regex=None):

Callers 2

tableExistsFunction · 0.85
columnExistsFunction · 0.85

Calls 3

getPageWordSetFunction · 0.90
infoMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…