From c8d5a6b9809862867f9a27278c0e33694ff99b1b Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 27 Dec 2010 00:41:16 +0000 Subject: [PATCH] update --- plugins/generic/enumeration.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plugins/generic/enumeration.py b/plugins/generic/enumeration.py index 6c0c89084..4a2b85195 100644 --- a/plugins/generic/enumeration.py +++ b/plugins/generic/enumeration.py @@ -1665,7 +1665,15 @@ class Enumeration: raise sqlmapUserQuitException else: 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 foundCols = {}