mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +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)
|
||||
pageWords = getPageTextWordsSet(kb.originalPage)
|
||||
for word in pageWords:
|
||||
if len(word) > 2 and not word[0].isdigit() and word.lower() not in tableSet:
|
||||
tables.append(word.lower())
|
||||
if word.lower() != word:
|
||||
word = word.lower()
|
||||
if len(word) > 2 and not word[0].isdigit() and word not in tableSet:
|
||||
tables.append(word)
|
||||
|
||||
count = [0]
|
||||
|
|
Loading…
Reference in New Issue
Block a user