mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
More appropriate naming (also, preventing ambiguities with --smart)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user