mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-21 14:02:49 +03:00
update
This commit is contained in:
parent
269d6bde24
commit
c8d5a6b980
|
@ -1665,7 +1665,15 @@ class Enumeration:
|
||||||
raise sqlmapUserQuitException
|
raise sqlmapUserQuitException
|
||||||
else:
|
else:
|
||||||
regex = "|".join(conf.col.split(","))
|
regex = "|".join(conf.col.split(","))
|
||||||
return columnExists(paths.COMMON_COLUMNS, regex)
|
conf.dumper.dbTableColumns(columnExists(paths.COMMON_COLUMNS, regex))
|
||||||
|
|
||||||
|
message = "do you want to dump entries? [Y/n] "
|
||||||
|
output = readInput(message, default="Y")
|
||||||
|
|
||||||
|
if output and output[0] not in ("n", "N"):
|
||||||
|
self.dumpAll()
|
||||||
|
|
||||||
|
return
|
||||||
|
|
||||||
rootQuery = queries[kb.dbms].search_column
|
rootQuery = queries[kb.dbms].search_column
|
||||||
foundCols = {}
|
foundCols = {}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user