Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2724767 commit ea7ba19Copy full SHA for ea7ba19
1 file changed
lib/techniques/brute/use.py
@@ -33,13 +33,14 @@ def tableExists(tableFile):
33
infoMsg = "checking table existence using items from '%s'" % tableFile
34
logger.info(infoMsg)
35
36
- infoMsg = "adding words used on web page to check list"
+ infoMsg = "adding words used on web page to name check list"
37
38
pageWords = getPageTextWordsSet(kb.originalPage)
39
for word in pageWords:
40
- word = word.lower()
41
- if len(word) > 1 and not word[0].isdigit() and word not in tableSet:
42
- tables.append(word)
+ if len(word) > 2 and not word[0].isdigit() and word.lower() not in tableSet:
+ tables.append(word.lower())
+ if word.lower() != word:
43
+ tables.append(word)
44
45
count = [0]
46
length = len(tables)
0 commit comments