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 2fe6aea commit eb1bfc2Copy full SHA for eb1bfc2
1 file changed
lib/core/target.py
@@ -136,6 +136,10 @@ def process(match, repl):
136
conf.data = re.sub(r"(?si)(Content-Disposition.+?)((\r)?\n--)", r"\g<1>%s\g<2>" % CUSTOM_INJECTION_MARK_CHAR, conf.data)
137
kb.postHint = POST_HINT.MULTIPART
138
139
+ if kb.postHint:
140
+ if CUSTOM_INJECTION_MARK_CHAR not in conf.data: # in case that no usable parameter values has been found
141
+ kb.postHint = None
142
+
143
if not kb.postHint:
144
if CUSTOM_INJECTION_MARK_CHAR in conf.data: # later processed
145
pass
0 commit comments