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

Skip to content

Commit feb93dc

Browse files
committed
Update related to the #3304
1 parent e524229 commit feb93dc

4 files changed

Lines changed: 5 additions & 13 deletions

File tree

lib/controller/checks.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,14 +1117,6 @@ def checkDynParam(place, parameter, value):
11171117
try:
11181118
payload = agent.payload(place, parameter, value, getUnicode(randInt))
11191119
dynResult = Request.queryPage(payload, place, raise404=False)
1120-
1121-
if not dynResult:
1122-
infoMsg = "confirming that %s parameter '%s' is dynamic" % (paramType, parameter)
1123-
logger.info(infoMsg)
1124-
1125-
randInt = randomInt()
1126-
payload = agent.payload(place, parameter, value, getUnicode(randInt))
1127-
dynResult = Request.queryPage(payload, place, raise404=False)
11281120
except SqlmapConnectionException:
11291121
pass
11301122

lib/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ def start():
529529

530530
testSqlInj = False
531531
else:
532-
infoMsg = "%s parameter '%s' is dynamic" % (paramType, parameter)
532+
infoMsg = "%s parameter '%s' appears to be dynamic" % (paramType, parameter)
533533
logger.info(infoMsg)
534534

535535
kb.testedParams.add(paramKey)

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.10.26"
22+
VERSION = "1.2.10.27"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ b3e60ea4e18a65c48515d04aab28ff68 extra/sqlharvest/sqlharvest.py
2323
1e5532ede194ac9c083891c2f02bca93 extra/wafdetectify/__init__.py
2424
c1bccc94522d3425a372dcd57f78418e extra/wafdetectify/wafdetectify.py
2525
3459c562a6abb9b4bdcc36925f751f3e lib/controller/action.py
26-
84316968d7235f53aac7e25069128725 lib/controller/checks.py
27-
d6deacb76e1f479b3c690c215fad1c08 lib/controller/controller.py
26+
fab20cff41611d4fcb4e426e2c7704da lib/controller/checks.py
27+
250d3cf5ea54b8fe1e91fd611b0044ab lib/controller/controller.py
2828
97a0f363bfc33a5ee4853cdf91515423 lib/controller/handler.py
2929
1e5532ede194ac9c083891c2f02bca93 lib/controller/__init__.py
3030
cb865cf6eff60118bc97a0f106af5e4d lib/core/agent.py
@@ -49,7 +49,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4949
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52-
ae5de169849869a08f920e52c0fadb8a lib/core/settings.py
52+
72fce2cc366c9008550703643f8a6cc7 lib/core/settings.py
5353
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
47ad325975ab21fc9f11d90b46d0d143 lib/core/target.py

0 commit comments

Comments
 (0)