Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3ef01f0

Browse files
committed
Minor update
1 parent d36b5c0 commit 3ef01f0

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.9.46"
22+
VERSION = "1.0.9.47"
2323
REVISION = getRevisionNumber()
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}

sqlmap.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@
6363
from lib.core.testing import smokeTest
6464
from lib.core.testing import liveTest
6565
from lib.parse.cmdline import cmdLineParser
66-
from lib.utils.api import setRestAPILog
67-
from lib.utils.api import StdDbOut
6866
except KeyboardInterrupt:
6967
errMsg = "user aborted"
7068
logger.error(errMsg)
@@ -126,6 +124,10 @@ def main():
126124
initOptions(cmdLineOptions)
127125

128126
if hasattr(conf, "api"):
127+
# heavy imports
128+
from lib.utils.api import StdDbOut
129+
from lib.utils.api import setRestAPILog
130+
129131
# Overwrite system standard output and standard error to write
130132
# to an IPC database
131133
sys.stdout = StdDbOut(conf.taskid, messagetype="stdout")

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
3f2deb69d28171ca0c00708ce0255ee8 lib/core/settings.py
48+
01e265a726458e3e503f7f857c367d76 lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
@@ -225,7 +225,7 @@ c3cc8b7727161e64ab59f312c33b541a shell/stager.aspx_
225225
1f7f125f30e0e800beb21e2ebbab18e1 shell/stager.jsp_
226226
01e3505e796edf19aad6a996101c81c9 shell/stager.php_
227227
56702e95555adee718b6a11ee7098fd4 sqlmapapi.py
228-
3d4d59905db17705e7c74680f928199b sqlmap.py
228+
4b8d19a39402dc7f8a341608a9625aa1 sqlmap.py
229229
1316deb997418507e76221c84ec99946 tamper/apostrophemask.py
230230
a6efe8f914c769c52afec703bd73609f tamper/apostrophenullencode.py
231231
b1c56983919b69f4f6f0e7929c881e7a tamper/appendnullbyte.py

0 commit comments

Comments
 (0)