Skip to content

Commit 42042fb

Browse files
committed
Removing encoding report part (enough time has been passed to collect major problems)
1 parent 2abc7fc commit 42042fb

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
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.5.17"
22+
VERSION = "1.2.5.18"
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: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,6 @@ def checkCharEncoding(encoding, warn=True):
220220
try:
221221
codecs.lookup(encoding.encode(UNICODE_ENCODING) if isinstance(encoding, unicode) else encoding)
222222
except (LookupError, ValueError):
223-
if warn and ' ' not in encoding:
224-
warnMsg = "unknown web page charset '%s'. " % encoding
225-
warnMsg += "Please report by e-mail to '%s'" % DEV_EMAIL_ADDRESS
226-
singleTimeLogMessage(warnMsg, logging.WARN, encoding)
227223
encoding = None
228224

229225
if encoding:

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
4747
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4848
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4949
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
50-
71c3a9f3ca42c55ecf3fc1d6dcffc6a3 lib/core/settings.py
50+
c7f07cb1ca744abc129e58828107d119 lib/core/settings.py
5151
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5252
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5353
6306284edcccc185b2df085438572b0d lib/core/target.py
@@ -67,7 +67,7 @@ fb2e2f05dde98caeac6ccf3e67192177 lib/parse/configfile.py
6767
ec4e56bbb1349176b2a22e0b99ba6a55 lib/parse/payloads.py
6868
492654567e72b6a14584651fcd9f16e6 lib/parse/sitemap.py
6969
30eed3a92a04ed2c29770e1b10d39dc0 lib/request/basicauthhandler.py
70-
596988f14408cde1a2d3b5c9f231873a lib/request/basic.py
70+
7a779e6bdf582b8ceb6d640cf869ac10 lib/request/basic.py
7171
c0cabedead14b8a23353b606672cff42 lib/request/comparison.py
7272
0ad9051e84e8fefe826f1a574b41b1b0 lib/request/connect.py
7373
dd4598675027fae99f2e2475b05986da lib/request/direct.py

0 commit comments

Comments
 (0)