mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-04-26 03:43:46 +03:00
minor update
This commit is contained in:
parent
8abcdae1b5
commit
49915f3c33
|
@ -34,6 +34,7 @@ from lib.core.data import queries
|
||||||
from lib.core.exception import sqlmapFilePathException
|
from lib.core.exception import sqlmapFilePathException
|
||||||
from lib.core.exception import sqlmapMissingMandatoryOptionException
|
from lib.core.exception import sqlmapMissingMandatoryOptionException
|
||||||
from lib.core.exception import sqlmapUnsupportedFeatureException
|
from lib.core.exception import sqlmapUnsupportedFeatureException
|
||||||
|
from lib.core.exception import sqlmapUserQuitException
|
||||||
from lib.core.unescaper import unescaper
|
from lib.core.unescaper import unescaper
|
||||||
from lib.request import inject
|
from lib.request import inject
|
||||||
from lib.techniques.outband.stacked import stackedTest
|
from lib.techniques.outband.stacked import stackedTest
|
||||||
|
@ -308,9 +309,12 @@ class UDF:
|
||||||
msg += "functions now? [Y/n/q] "
|
msg += "functions now? [Y/n/q] "
|
||||||
choice = readInput(msg, default="Y")
|
choice = readInput(msg, default="Y")
|
||||||
|
|
||||||
if choice[0] not in ( "y", "Y" ):
|
if choice[0] in ( "n", "N" ):
|
||||||
self.cleanup(udfDict=self.udfs)
|
self.cleanup(udfDict=self.udfs)
|
||||||
return
|
return
|
||||||
|
elif choice[0] in ( "q", "Q" ):
|
||||||
|
self.cleanup(udfDict=self.udfs)
|
||||||
|
raise sqlmapUserQuitException
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
udfList = []
|
udfList = []
|
||||||
|
|
Loading…
Reference in New Issue
Block a user