From 5ab300a28b191e589d69eae2540252cb35607652 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 16 Jul 2012 14:11:53 +0200 Subject: [PATCH 1/2] Update of doc/THANKS --- doc/THANKS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/THANKS b/doc/THANKS index 1a4b7fa72..d857fa924 100644 --- a/doc/THANKS +++ b/doc/THANKS @@ -577,6 +577,9 @@ Bedirhan Urgun Kyprianos Vasilopoulos for reporting a couple of minor bugs +Vlado Velichkovski + for reporting a couple of bugs + Johnny Venter for reporting a couple of bugs From 0f64e1e6c1757857350e20b384efa73782757b03 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 16 Jul 2012 15:43:02 +0200 Subject: [PATCH 2/2] Minor update for Issue #94 (not fixing it) --- lib/techniques/union/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/techniques/union/test.py b/lib/techniques/union/test.py index 11043f29e..12a683b8f 100644 --- a/lib/techniques/union/test.py +++ b/lib/techniques/union/test.py @@ -52,7 +52,7 @@ def __findUnionCharCount(comment, place, parameter, value, prefix, suffix, where query = agent.suffixQuery(query, suffix=suffix, comment=comment) payload = agent.payload(newValue=query, place=place, parameter=parameter, where=where) page, headers = Request.queryPage(payload, place=place, content=True, raise404=False) - return not re.search(r"(warning|error|order by)", page or "", re.I) and comparison(page, headers) + return not re.search(r"(warning|error|order by|failed)", page or "", re.I) and comparison(page, headers) if __orderByTest(1) and not __orderByTest(randomInt()): infoMsg = "ORDER BY technique seems to be usable. "