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

Skip to content

Commit 1ec56f9

Browse files
committed
minor update
1 parent 2d3c12d commit 1ec56f9

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

lib/controller/checks.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,8 +720,6 @@ def checkDynamicContent(firstPage, secondPage):
720720
secondPage, _ = Request.queryPage(content=True)
721721
findDynamicContent(firstPage, secondPage)
722722

723-
setDynamicMarkings(kb.dynamicMarkings)
724-
725723
def checkStability():
726724
"""
727725
This function checks if the URL content is stable requesting the

lib/request/inject.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
from lib.core.data import kb
3434
from lib.core.data import logger
3535
from lib.core.data import queries
36+
from lib.core.enums import CHARSET_TYPE
3637
from lib.core.enums import DBMS
3738
from lib.core.enums import EXPECTED
3839
from lib.core.enums import PAYLOAD
@@ -213,7 +214,7 @@ def __goInferenceProxy(expression, fromUser=False, expected=None, batch=False, u
213214
countedExpression = countedExpression[:untilOrderChar]
214215

215216
if not stopLimit:
216-
count = __goInference(payload, countedExpression, 2, firstChar, lastChar)
217+
count = __goInference(payload, countedExpression, CHARSET_TYPE.DIGITS, firstChar, lastChar)
217218

218219
if isNumPosStrValue(count):
219220
count = int(count)

0 commit comments

Comments
 (0)