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

Skip to content

Commit 0c7eece

Browse files
committed
Trivial update (message language)
1 parent 3e72da6 commit 0c7eece

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

lib/controller/checks.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ def checkStability():
12321232
logger.error(errMsg)
12331233

12341234
else:
1235-
warnMsg = "target URL content is not stable. sqlmap will base the page "
1235+
warnMsg = "target URL content is not stable (i.e. content differs). sqlmap will base the page "
12361236
warnMsg += "comparison on a sequence matcher. If no dynamic nor "
12371237
warnMsg += "injectable parameters are detected, or in case of "
12381238
warnMsg += "junk results, refer to user's manual paragraph "
@@ -1317,9 +1317,8 @@ def checkRegexp():
13171317
rawResponse = "%s%s" % (listToStrValue(headers.headers if headers else ""), page)
13181318

13191319
if not re.search(conf.regexp, rawResponse, re.I | re.M):
1320-
warnMsg = "you provided '%s' as the regular expression to " % conf.regexp
1321-
warnMsg += "match, but such a regular expression does not have any "
1322-
warnMsg += "match within the target URL raw response, sqlmap "
1320+
warnMsg = "you provided '%s' as the regular expression " % conf.regexp
1321+
warnMsg += "which does not have any match within the target URL raw response. sqlmap "
13231322
warnMsg += "will carry on anyway"
13241323
logger.warn(warnMsg)
13251324

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.9.27"
22+
VERSION = "1.2.9.28"
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)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ b3e60ea4e18a65c48515d04aab28ff68 extra/sqlharvest/sqlharvest.py
2424
1e5532ede194ac9c083891c2f02bca93 extra/wafdetectify/__init__.py
2525
c1bccc94522d3425a372dcd57f78418e extra/wafdetectify/wafdetectify.py
2626
3459c562a6abb9b4bdcc36925f751f3e lib/controller/action.py
27-
c799e4aa5cf1ad50fab0c970885c61d9 lib/controller/checks.py
27+
ba0f924d43ff1e41f070afb003ed0aaa lib/controller/checks.py
2828
c414cecdb0472c92cf50ed5b01e4438c lib/controller/controller.py
2929
c7443613a0a2505b1faec931cee2a6ef lib/controller/handler.py
3030
1e5532ede194ac9c083891c2f02bca93 lib/controller/__init__.py
@@ -50,7 +50,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
5050
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5151
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5252
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
53-
423c57c6503bbbaa42fa832833381246 lib/core/settings.py
53+
29691989c16b3240427c4159a2db6129 lib/core/settings.py
5454
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5555
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5656
248bd121e0565318e1efaff54aa427bc lib/core/target.py

0 commit comments

Comments
 (0)