mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
minor update (to prevent adding too much items)
This commit is contained in:
parent
b472b96f92
commit
c5c4aae3d5
1 changed files with 3 additions and 4 deletions
|
|
@ -37,10 +37,9 @@ 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]
|
||||||
length = len(tables)
|
length = len(tables)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue