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

Skip to content

Commit b36d824

Browse files
committed
More fine-tuning for #4505 (in case of --no-escape)
1 parent 091678b commit b36d824

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

lib/core/dicts.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@
412412
HTML_ENTITIES = {
413413
"quot": 34,
414414
"amp": 38,
415+
"apos": 39,
415416
"lt": 60,
416417
"gt": 62,
417418
"nbsp": 160,

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.5.1.5"
21+
VERSION = "1.5.1.6"
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)

0 commit comments

Comments
 (0)