Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf5fc2 commit 1ee0d9cCopy full SHA for 1ee0d9c
1 file changed
lib/core/target.py
@@ -11,6 +11,7 @@
11
import re
12
import tempfile
13
import time
14
+import urlparse
15
16
from lib.core.common import Backend
17
from lib.core.common import hashDBRetrieve
@@ -162,6 +163,15 @@ def __setRequestParams():
162
163
kb.processUserMarks = not test or test[0] not in ("n", "N")
164
165
if not kb.processUserMarks:
166
+ if place == PLACE.URI:
167
+ query = urlparse.urlsplit(value)[3]
168
+ if query:
169
+ parameters = conf.parameters[PLACE.GET] = query
170
+ paramDict = paramToDict(PLACE.GET, parameters)
171
+
172
+ if paramDict:
173
+ conf.paramDict[PLACE.GET] = paramDict
174
+ testableParameters = True
175
continue
176
177
conf.parameters[place] = value
0 commit comments