mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Fixes #2146
This commit is contained in:
parent
6b91b7b7fa
commit
603e9739ae
|
@ -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.9.4"
|
VERSION = "1.0.9.5"
|
||||||
REVISION = getRevisionNumber()
|
REVISION = getRevisionNumber()
|
||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||||
|
|
|
@ -85,6 +85,9 @@ def modulePath():
|
||||||
return getUnicode(os.path.dirname(os.path.realpath(_)), encoding=sys.getfilesystemencoding() or UNICODE_ENCODING)
|
return getUnicode(os.path.dirname(os.path.realpath(_)), encoding=sys.getfilesystemencoding() or UNICODE_ENCODING)
|
||||||
|
|
||||||
def checkEnvironment():
|
def checkEnvironment():
|
||||||
|
global conf
|
||||||
|
global kb
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.path.isdir(modulePath())
|
os.path.isdir(modulePath())
|
||||||
except UnicodeEncodeError:
|
except UnicodeEncodeError:
|
||||||
|
@ -101,6 +104,11 @@ def checkEnvironment():
|
||||||
logger.critical(errMsg)
|
logger.critical(errMsg)
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
|
# Patch for pip environment
|
||||||
|
if "sqlmap.sqlmap" in sys.modules:
|
||||||
|
kb = sys.modules["lib.core.data"].kb
|
||||||
|
conf = sys.modules["lib.core.data"].conf
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
"""
|
"""
|
||||||
Main function of sqlmap when running from command line.
|
Main function of sqlmap when running from command line.
|
||||||
|
|
|
@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
|
||||||
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
|
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
|
||||||
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
|
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
|
||||||
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
|
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
|
||||||
c8d3437361cee294f4946eb65211623a lib/core/settings.py
|
b665e9ff92a2b1010d39c6dabc9a44e4 lib/core/settings.py
|
||||||
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
|
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
|
||||||
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
|
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
|
||||||
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
|
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
|
||||||
|
@ -218,7 +218,7 @@ c3cc8b7727161e64ab59f312c33b541a shell/stager.aspx_
|
||||||
1f7f125f30e0e800beb21e2ebbab18e1 shell/stager.jsp_
|
1f7f125f30e0e800beb21e2ebbab18e1 shell/stager.jsp_
|
||||||
01e3505e796edf19aad6a996101c81c9 shell/stager.php_
|
01e3505e796edf19aad6a996101c81c9 shell/stager.php_
|
||||||
56702e95555adee718b6a11ee7098fd4 sqlmapapi.py
|
56702e95555adee718b6a11ee7098fd4 sqlmapapi.py
|
||||||
f60363f91e6901493a2a85afcd2eaf09 sqlmap.py
|
148e4180a3e19ef26839ba49a9d2d3c7 sqlmap.py
|
||||||
1316deb997418507e76221c84ec99946 tamper/apostrophemask.py
|
1316deb997418507e76221c84ec99946 tamper/apostrophemask.py
|
||||||
a6efe8f914c769c52afec703bd73609f tamper/apostrophenullencode.py
|
a6efe8f914c769c52afec703bd73609f tamper/apostrophenullencode.py
|
||||||
b1c56983919b69f4f6f0e7929c881e7a tamper/appendnullbyte.py
|
b1c56983919b69f4f6f0e7929c881e7a tamper/appendnullbyte.py
|
||||||
|
|
Loading…
Reference in New Issue
Block a user