Skip to content

Commit 1822cc0

Browse files
committed
1 parent 509bb41 commit 1822cc0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.enums import OS
2020

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

lib/request/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def decodePage(page, contentEncoding, contentType):
334334

335335
kb.pageEncoding = kb.pageEncoding or checkCharEncoding(getHeuristicCharEncoding(page))
336336

337-
if kb.pageEncoding and kb.pageEncoding.lower() == "utf-8-sig":
337+
if (kb.pageEncoding or "").lower() == "utf-8-sig":
338338
kb.pageEncoding = "utf-8"
339339
if page and page.startswith("\xef\xbb\xbf"): # Reference: https://docs.python.org/2/library/codecs.html (Note: noticed problems when "utf-8-sig" is left to Python for handling)
340340
page = page[3:]

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
4646
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4747
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4848
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
49-
13d487ed576734ef3178720ec98ec406 lib/core/settings.py
49+
50e82ed2cd620854ce6e74cf18781117 lib/core/settings.py
5050
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5151
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5252
a35efa7bec9f1e6cedf17c9830a79241 lib/core/target.py
@@ -66,7 +66,7 @@ aaad2a0d80f05eaebe52c71519b3dfc7 lib/parse/headers.py
6666
ec4e56bbb1349176b2a22e0b99ba6a55 lib/parse/payloads.py
6767
492654567e72b6a14584651fcd9f16e6 lib/parse/sitemap.py
6868
30eed3a92a04ed2c29770e1b10d39dc0 lib/request/basicauthhandler.py
69-
7e8e0a3fdebbe443832c1bab2f8d3869 lib/request/basic.py
69+
596988f14408cde1a2d3b5c9f231873a lib/request/basic.py
7070
c0cabedead14b8a23353b606672cff42 lib/request/comparison.py
7171
e2b40b94446d59fb25abe68c429bae74 lib/request/connect.py
7272
dd4598675027fae99f2e2475b05986da lib/request/direct.py

0 commit comments

Comments
 (0)