From 7c802ed8cc39d58367bea05a7667f7746f6e0f32 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 13 Feb 2013 11:14:45 +0100 Subject: [PATCH] Minor fix --- lib/core/target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "