mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-29 20:46:36 +00:00
added some user interaction when page is dynamic
This commit is contained in:
parent
b748e6ea44
commit
9ffa928783
5 changed files with 65 additions and 6 deletions
|
|
@ -51,6 +51,7 @@ from lib.core.data import conf
|
|||
from lib.core.data import logger
|
||||
from lib.core.data import paths
|
||||
from lib.core.exception import exceptionsTuple
|
||||
from lib.core.exception import sqlmapSilentQuitException
|
||||
from lib.core.exception import sqlmapUserQuitException
|
||||
from lib.core.exception import unhandledException
|
||||
from lib.core.option import init
|
||||
|
|
@ -100,6 +101,9 @@ def main():
|
|||
logger.error(errMsg)
|
||||
closeDumper(False, errMsg)
|
||||
|
||||
except sqlmapSilentQuitException:
|
||||
closeDumper(False)
|
||||
|
||||
except exceptionsTuple, e:
|
||||
e = getUnicode(e)
|
||||
logger.critical(e)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue