mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 03:23:48 +03:00
minor update (to prevent adding too much items)
This commit is contained in:
parent
b472b96f92
commit
c5c4aae3d5
|
@ -37,9 +37,8 @@ def tableExists(tableFile):
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
pageWords = getPageTextWordsSet(kb.originalPage)
|
pageWords = getPageTextWordsSet(kb.originalPage)
|
||||||
for word in pageWords:
|
for word in pageWords:
|
||||||
if len(word) > 2 and not word[0].isdigit() and word.lower() not in tableSet:
|
word = word.lower()
|
||||||
tables.append(word.lower())
|
if len(word) > 2 and not word[0].isdigit() and word not in tableSet:
|
||||||
if word.lower() != word:
|
|
||||||
tables.append(word)
|
tables.append(word)
|
||||||
|
|
||||||
count = [0]
|
count = [0]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user