mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-10 02:01:57 +00:00
type correction and adding global flag kb.ignoreTimeout which could be useful
This commit is contained in:
parent
27f0e73cc9
commit
2ea613b170
4 changed files with 7 additions and 6 deletions
|
|
@ -789,7 +789,7 @@ class Enumeration:
|
|||
|
||||
return kb.data.cachedTables
|
||||
|
||||
message = "do you want to use common table existance check? [Y/n/q]"
|
||||
message = "do you want to use common table existence check? [Y/n/q]"
|
||||
test = readInput(message, default="Y")
|
||||
|
||||
if test[0] in ("n", "N"):
|
||||
|
|
@ -999,7 +999,7 @@ class Enumeration:
|
|||
|
||||
return kb.data.cachedColumns
|
||||
|
||||
message = "do you want to use common columns existance check? [Y/n/q]"
|
||||
message = "do you want to use common columns existence check? [Y/n/q]"
|
||||
test = readInput(message, default="Y")
|
||||
|
||||
if test[0] in ("n", "N"):
|
||||
|
|
@ -1871,7 +1871,7 @@ class Enumeration:
|
|||
bruteForce = True
|
||||
|
||||
if bruteForce:
|
||||
message = "do you want to use common table existance check? [Y/n/q]"
|
||||
message = "do you want to use common table existence check? [Y/n/q]"
|
||||
test = readInput(message, default="Y")
|
||||
|
||||
if test[0] in ("n", "N"):
|
||||
|
|
@ -2026,7 +2026,7 @@ class Enumeration:
|
|||
bruteForce = True
|
||||
|
||||
if bruteForce:
|
||||
message = "do you want to use common columns existance check? [Y/n/q]"
|
||||
message = "do you want to use common columns existence check? [Y/n/q]"
|
||||
test = readInput(message, default="Y")
|
||||
|
||||
if test[0] in ("n", "N"):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue