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 b472b96 commit c5c4aaeCopy full SHA for c5c4aae
1 file changed
lib/techniques/brute/use.py
@@ -37,10 +37,9 @@ def tableExists(tableFile):
37
logger.info(infoMsg)
38
pageWords = getPageTextWordsSet(kb.originalPage)
39
for word in pageWords:
40
- if len(word) > 2 and not word[0].isdigit() and word.lower() not in tableSet:
41
- tables.append(word.lower())
42
- if word.lower() != word:
43
- tables.append(word)
+ word = word.lower()
+ if len(word) > 2 and not word[0].isdigit() and word not in tableSet:
+ tables.append(word)
44
45
count = [0]
46
length = len(tables)
0 commit comments