mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-13 17:52:22 +03:00
minor change
This commit is contained in:
parent
68a95fd1b1
commit
90582ed7dc
|
@ -456,15 +456,15 @@ def checkSqlInjection(place, parameter, value):
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
message = "How do you want to proceed? [(S)kip current test/(e)nd detection phase/(n)ext parameter/(q)uit]"
|
message = "How do you want to proceed? [(S)kip current test/(e)nd detection phase/(n)ext parameter/(q)uit]"
|
||||||
test = readInput(message, default="S")
|
choice = readInput(message, default="S")
|
||||||
|
|
||||||
if not test or test[0] in ("s", "S"):
|
if not choice or choice[0] in ("s", "S"):
|
||||||
pass
|
pass
|
||||||
elif test[0] in ("n", "N"):
|
elif choice[0] in ("n", "N"):
|
||||||
return None
|
return None
|
||||||
elif test[0] in ("e", "E"):
|
elif choice[0] in ("e", "E"):
|
||||||
kb.endDetection = True
|
kb.endDetection = True
|
||||||
elif test[0] in ("q", "Q"):
|
elif choice[0] in ("q", "Q"):
|
||||||
raise sqlmapUserQuitException
|
raise sqlmapUserQuitException
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user