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

Skip to content

Commit 5ccb73a

Browse files
committed
Minor patch for Python3 check
1 parent 6ac5b6b commit 5ccb73a

3 files changed

Lines changed: 4 additions & 4 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.7.42"
22+
VERSION = "1.0.7.43"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def main():
203203
errMsg += "repository at '%s'" % GIT_PAGE
204204
logger.critical(errMsg)
205205
print
206-
print excMsg.strip()
206+
dataToStdout(excMsg)
207207
raise SystemExit
208208
elif any(_ in excMsg for _ in ("No space left", "Disk quota exceeded")):
209209
errMsg = "no space left on output device"

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-
00cf845a2c2dd5ce0546dd003d65650d lib/core/settings.py
48+
302ae9311a57db18ea8552c55eb339ba lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
@@ -218,7 +218,7 @@ c3cc8b7727161e64ab59f312c33b541a shell/stager.aspx_
218218
1f7f125f30e0e800beb21e2ebbab18e1 shell/stager.jsp_
219219
01e3505e796edf19aad6a996101c81c9 shell/stager.php_
220220
99cb675e2c353f03a23e0f7a97f1a8ef sqlmapapi.py
221-
af69c5e3d20bd472ba386056e9cf2fd6 sqlmap.py
221+
28ff1c7f8b7da2f3c236ac0f8a21d545 sqlmap.py
222222
1316deb997418507e76221c84ec99946 tamper/apostrophemask.py
223223
a6efe8f914c769c52afec703bd73609f tamper/apostrophenullencode.py
224224
b1c56983919b69f4f6f0e7929c881e7a tamper/appendnullbyte.py

0 commit comments

Comments
 (0)