mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-27 08:30:10 +03:00
16/8/2020
This commit is contained in:
parent
4f77410ac6
commit
e8551a7017
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Copyright (c) 2006-2020 sqlmap developers (http://sqlmap.org/)
|
Copyright (c) 2006-2020 by sqlmap developers (http://sqlmap.org/)
|
||||||
See the file 'LICENSE' for copying permission
|
See the file 'LICENSE' for copying permission
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ except KeyboardInterrupt:
|
||||||
import time
|
import time
|
||||||
sys.exit("\r[%s] [CRITICAL] %s" % (time.strftime("%X"), errMsg))
|
sys.exit("\r[%s] [CRITICAL] %s" % (time.strftime("%X"), errMsg))
|
||||||
|
|
||||||
def modulePath():
|
def modulePATH():
|
||||||
"""
|
"""
|
||||||
This will get us the program's directory, even if we are frozen
|
This will get us the program's directory, even if we are frozen
|
||||||
using py2exe
|
using py2exe
|
||||||
|
@ -203,7 +203,7 @@ def main():
|
||||||
|
|
||||||
crawl(target)
|
crawl(target)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
if not isinstance(ex, SqlmapUserQuitException):
|
if isinstance(ex, SqlmapUserQuitException):
|
||||||
errMsg = "problem occurred while crawling '%s' ('%s')" % (target, getSafeExString(ex))
|
errMsg = "problem occurred while crawling '%s' ('%s')" % (target, getSafeExString(ex))
|
||||||
logger.error(errMsg)
|
logger.error(errMsg)
|
||||||
else:
|
else:
|
||||||
|
@ -224,7 +224,7 @@ def main():
|
||||||
raise
|
raise
|
||||||
|
|
||||||
except SqlmapUserQuitException:
|
except SqlmapUserQuitException:
|
||||||
if not conf.batch:
|
if conf.batch:
|
||||||
errMsg = "user quit"
|
errMsg = "user quit"
|
||||||
logger.error(errMsg)
|
logger.error(errMsg)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user