mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-24 10:33:47 +03:00
Update for an Issue #1846
This commit is contained in:
parent
263730f4ee
commit
be26392057
|
@ -19,7 +19,7 @@ from lib.core.enums import OS
|
||||||
from lib.core.revision import getRevisionNumber
|
from lib.core.revision import getRevisionNumber
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.0.5.11"
|
VERSION = "1.0.5.12"
|
||||||
REVISION = getRevisionNumber()
|
REVISION = getRevisionNumber()
|
||||||
STABLE = VERSION.count('.') <= 2
|
STABLE = VERSION.count('.') <= 2
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
||||||
|
|
32
sqlmap.py
32
sqlmap.py
|
@ -12,6 +12,7 @@ sys.dont_write_bytecode = True
|
||||||
from lib.utils import versioncheck # this has to be the first non-standard import
|
from lib.utils import versioncheck # this has to be the first non-standard import
|
||||||
|
|
||||||
import bdb
|
import bdb
|
||||||
|
import distutils
|
||||||
import inspect
|
import inspect
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
@ -49,6 +50,7 @@ from lib.core.option import initOptions
|
||||||
from lib.core.option import init
|
from lib.core.option import init
|
||||||
from lib.core.profiling import profile
|
from lib.core.profiling import profile
|
||||||
from lib.core.settings import LEGAL_DISCLAIMER
|
from lib.core.settings import LEGAL_DISCLAIMER
|
||||||
|
from lib.core.settings import VERSION
|
||||||
from lib.core.testing import smokeTest
|
from lib.core.testing import smokeTest
|
||||||
from lib.core.testing import liveTest
|
from lib.core.testing import liveTest
|
||||||
from lib.parse.cmdline import cmdLineParser
|
from lib.parse.cmdline import cmdLineParser
|
||||||
|
@ -68,21 +70,33 @@ def modulePath():
|
||||||
|
|
||||||
return getUnicode(os.path.dirname(os.path.realpath(_)), encoding=sys.getfilesystemencoding())
|
return getUnicode(os.path.dirname(os.path.realpath(_)), encoding=sys.getfilesystemencoding())
|
||||||
|
|
||||||
|
def checkEnvironment():
|
||||||
|
paths.SQLMAP_ROOT_PATH = modulePath()
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.path.isdir(paths.SQLMAP_ROOT_PATH)
|
||||||
|
except UnicodeEncodeError:
|
||||||
|
errMsg = "your system does not properly handle non-ASCII paths. "
|
||||||
|
errMsg += "Please move the sqlmap's directory to the other location"
|
||||||
|
logger.critical(errMsg)
|
||||||
|
raise SystemExit
|
||||||
|
|
||||||
|
#if distutils.version.LooseVersion(VERSION) < distutils.version.LooseVersion("1.0"):
|
||||||
|
if True:
|
||||||
|
errMsg = "your runtime environment (e.g. PYTHONPATH) is "
|
||||||
|
errMsg += "broken. Please make sure that you are not running "
|
||||||
|
errMsg += "newer versions of sqlmap with runtime scripts for older "
|
||||||
|
errMsg += "versions"
|
||||||
|
logger.critical(errMsg)
|
||||||
|
raise SystemExit
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
"""
|
"""
|
||||||
Main function of sqlmap when running from command line.
|
Main function of sqlmap when running from command line.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
try:
|
try:
|
||||||
paths.SQLMAP_ROOT_PATH = modulePath()
|
checkEnvironment()
|
||||||
|
|
||||||
try:
|
|
||||||
os.path.isdir(paths.SQLMAP_ROOT_PATH)
|
|
||||||
except UnicodeEncodeError:
|
|
||||||
errMsg = "your system does not properly handle non-ASCII paths. "
|
|
||||||
errMsg += "Please move the sqlmap's directory to the other location"
|
|
||||||
logger.error(errMsg)
|
|
||||||
raise SystemExit
|
|
||||||
|
|
||||||
setPaths()
|
setPaths()
|
||||||
banner()
|
banner()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user