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

Skip to content

Commit a1342e0

Browse files
committed
Minor update
1 parent 7963281 commit a1342e0

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

doc/THIRD-PARTY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ be bound by the terms and conditions of this License Agreement.
277277
* The `bottle` web framework library located under `thirdparty/bottle/`.
278278
Copyright (C) 2012, Marcel Hellkamp.
279279
* The `identYwaf` library located under `thirdparty/identywaf/`.
280-
Copyright (C) 2019, Miroslav Stampar.
280+
Copyright (C) 2019-2020, Miroslav Stampar.
281281
* The `ordereddict` library located under `thirdparty/odict/`.
282282
Copyright (C) 2009, Raymond Hettinger.
283283
* The `six` Python 2 and 3 compatibility library located under `thirdparty/six/`.

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.4.9.9"
21+
VERSION = "1.4.9.10"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/core/testing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def vulnTest():
4444
(u"-c <config> --flush-session --roles --statements --hostname --privileges --sql-query=\"SELECT '\u0161u\u0107uraj'\" --technique=U", (u": '\u0161u\u0107uraj'", "on SQLite it is not possible")),
4545
(u"-u <url> --flush-session --sql-query=\"SELECT '\u0161u\u0107uraj'\" --technique=B --no-escape --string=luther --unstable", (u": '\u0161u\u0107uraj'",)),
4646
("--dummy", ("all tested parameters do not appear to be injectable", "does not seem to be injectable", "there is not at least one", "~might be injectable")),
47+
("-u '<url>&id2=1' -p id2 -v 5 --flush-session --level=5 --test-filter='AND boolean-based blind - WHERE or HAVING clause (MySQL comment)'", ("~1AND",)),
4748
("--list-tampers", ("between", "MySQL", "xforwardedfor")),
4849
("-r <request> --flush-session -v 5 --test-skip='heavy' --save=<tmp>", ("CloudFlare", "possible DBMS: 'SQLite'", "User-agent: foobar", "~Type: time-based blind")),
4950
("-l <log> --flush-session --keep-alive --skip-waf -v 5 --technique=U --union-from=users --banner --parse-errors", ("banner: '3.", "ORDER BY term out of range", "~xp_cmdshell", "Connection: keep-alive")),

0 commit comments

Comments
 (0)