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

Skip to content

Commit 9456dc6

Browse files
committed
Minor patch
1 parent 1c92d8d commit 9456dc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def start():
277277
testSqlInj = False
278278

279279
if PLACE.GET in conf.parameters and not any([conf.data, conf.testParameter]):
280-
for parameter in re.findall(r"([^=]+)=([^%s]+%s?|\Z)" % (re.escape(conf.paramDel) or DEFAULT_GET_POST_DELIMITER, re.escape(conf.paramDel) or DEFAULT_GET_POST_DELIMITER), conf.parameters[PLACE.GET]):
280+
for parameter in re.findall(r"([^=]+)=([^%s]+%s?|\Z)" % (re.escape(conf.paramDel or "") or DEFAULT_GET_POST_DELIMITER, re.escape(conf.paramDel or "") or DEFAULT_GET_POST_DELIMITER), conf.parameters[PLACE.GET]):
281281
paramKey = (conf.hostname, conf.path, PLACE.GET, parameter[0])
282282

283283
if paramKey not in kb.testedParams:

0 commit comments

Comments
 (0)