mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Renaming conf.cDel to conf.cookieDel
This commit is contained in:
parent
0ae8ac707e
commit
7cc4159316
7 changed files with 10 additions and 10 deletions
|
|
@ -539,7 +539,7 @@ def paramToDict(place, parameters=None):
|
|||
parameters = parameters.replace(", ", ",")
|
||||
parameters = re.sub(r"&(\w{1,4});", r"%s\g<1>%s" % (PARAMETER_AMP_MARKER, PARAMETER_SEMICOLON_MARKER), parameters)
|
||||
if place == PLACE.COOKIE:
|
||||
splitParams = parameters.split(conf.cDel or DEFAULT_COOKIE_DELIMITER)
|
||||
splitParams = parameters.split(conf.cookieDel or DEFAULT_COOKIE_DELIMITER)
|
||||
else:
|
||||
splitParams = parameters.split(conf.paramDel or DEFAULT_GET_POST_DELIMITER)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ optDict = {
|
|||
"data": "string",
|
||||
"paramDel": "string",
|
||||
"cookie": "string",
|
||||
"cDel": "string",
|
||||
"cookieDel": "string",
|
||||
"loadCookies": "string",
|
||||
"dropSetCookie": "boolean",
|
||||
"agent": "string",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue