diff --git a/lib/core/target.py b/lib/core/target.py index 3dc69fe36..2ccfa0a3a 100644 --- a/lib/core/target.py +++ b/lib/core/target.py @@ -131,7 +131,7 @@ def _setRequestParams(): kb.processUserMarks = True if kb.postHint else kb.processUserMarks - if re.search(URI_INJECTABLE_REGEX, conf.url, re.I) and not any(place in conf.parameters for place in (PLACE.GET, PLACE.POST)): + if re.search(URI_INJECTABLE_REGEX, conf.url, re.I) and not any(place in conf.parameters for place in (PLACE.GET, PLACE.POST)) and not kb.postHint: warnMsg = "you've provided target url without any GET " warnMsg += "parameters (e.g. www.site.com/article.php?id=1) " warnMsg += "and without providing any POST parameters "