mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
incorporation of method for neutralization of reflective values
This commit is contained in:
@@ -28,6 +28,7 @@ from lib.core.common import getUnicode
|
||||
from lib.core.common import logHTTPTraffic
|
||||
from lib.core.common import parseTargetUrl
|
||||
from lib.core.common import readInput
|
||||
from lib.core.common import removeReflectiveValues
|
||||
from lib.core.common import stdev
|
||||
from lib.core.common import wasLastRequestDelayed
|
||||
from lib.core.convert import urlencode
|
||||
@@ -487,7 +488,10 @@ class Connect:
|
||||
|
||||
if content or response:
|
||||
return page, headers
|
||||
elif getRatioValue:
|
||||
|
||||
page = removeReflectiveValues(page, value)
|
||||
|
||||
if getRatioValue:
|
||||
return comparison(page, getRatioValue=False, pageLength=pageLength), comparison(page, getRatioValue=True, pageLength=pageLength)
|
||||
elif pageLength or page:
|
||||
return comparison(page, getRatioValue, pageLength)
|
||||
|
||||
Reference in New Issue
Block a user