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

Skip to content

Commit dd9bfd1

Browse files
committed
Trivial update
1 parent 0c7eece commit dd9bfd1

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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.28"
22+
VERSION = "1.2.9.29"
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/techniques/union/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _orderByTest(cols):
5656
query = agent.suffixQuery(query, suffix=suffix, comment=comment)
5757
payload = agent.payload(newValue=query, place=place, parameter=parameter, where=where)
5858
page, headers, code = Request.queryPage(payload, place=place, content=True, raise404=False)
59-
return not any(re.search(_, page or "", re.I) and not re.search(_, kb.pageTemplate or "", re.I) for _ in ("(warning|error):", "order by", "unknown column", "failed")) and not kb.heavilyDynamic and comparison(page, headers, code) or re.search(r"data types cannot be compared or sorted", page or "", re.I) is not None
59+
return not any(re.search(_, page or "", re.I) and not re.search(_, kb.pageTemplate or "", re.I) for _ in ("(warning|error):", "order (by|clause)", "unknown column", "failed")) and not kb.heavilyDynamic and comparison(page, headers, code) or re.search(r"data types cannot be compared or sorted", page or "", re.I) is not None
6060

6161
if _orderByTest(1 if lowerCount is None else lowerCount) and not _orderByTest(randomInt() if upperCount is None else upperCount + 1):
6262
infoMsg = "'ORDER BY' technique appears to be usable. "

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
29691989c16b3240427c4159a2db6129 lib/core/settings.py
53+
c4de3786929e1e0fcf2a614a58679588 lib/core/settings.py
5454
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5555
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5656
248bd121e0565318e1efaff54aa427bc lib/core/target.py
@@ -100,7 +100,7 @@ db208ab47de010836c6bf044e2357861 lib/techniques/blind/inference.py
100100
6007347548e85383705eaa4b863448a2 lib/techniques/error/use.py
101101
1e5532ede194ac9c083891c2f02bca93 lib/techniques/__init__.py
102102
1e5532ede194ac9c083891c2f02bca93 lib/techniques/union/__init__.py
103-
94d7a22bb6725a91e84ba2cd9973e96d lib/techniques/union/test.py
103+
f7813cdee00df8f98d6f811475e520a1 lib/techniques/union/test.py
104104
7361338240ecd9d01d1d10ec76bce069 lib/techniques/union/use.py
105105
77ff35587af9e3dfde63b8327e230f9a lib/utils/api.py
106106
37dfb641358669f62c2acedff241348b lib/utils/brute.py

0 commit comments

Comments
 (0)