diff --git a/lib/core/enums.py b/lib/core/enums.py index 52f0ed7df..4283e15b0 100644 --- a/lib/core/enums.py +++ b/lib/core/enums.py @@ -243,7 +243,7 @@ class PAYLOAD: class WIZARD: BASIC = ("getBanner", "getCurrentUser", "getCurrentDb", "isDba") - SMART = ("getBanner", "getCurrentUser", "getCurrentDb", "isDba", "getUsers", "getDbs", "getTables", "getSchema", "excludeSysDbs") + INTERMEDIATE = ("getBanner", "getCurrentUser", "getCurrentDb", "isDba", "getUsers", "getDbs", "getTables", "getSchema", "excludeSysDbs") ALL = ("getBanner", "getCurrentUser", "getCurrentDb", "isDba", "getHostname", "getUsers", "getPasswordHashes", "getPrivileges", "getRoles", "dumpAll") class ADJUST_TIME_DELAY: diff --git a/lib/core/option.py b/lib/core/option.py index 77a8bc138..5767747c1 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1729,11 +1729,11 @@ def _useWizardInterface(): while choice is None or choice not in ("", "1", "2", "3"): message = "Enumeration (--banner/--current-user/etc). Please choose:\n" - message += "[1] Basic (default)\n[2] Smart\n[3] All" + message += "[1] Basic (default)\n[2] Intermediate\n[3] All" choice = readInput(message, default='1') if choice == '2': - map(lambda x: conf.__setitem__(x, True), WIZARD.SMART) + map(lambda x: conf.__setitem__(x, True), WIZARD.INTERMEDIATE) elif choice == '3': map(lambda x: conf.__setitem__(x, True), WIZARD.ALL) else: