From af4ee81e620d3396fbf5629511c7d4c436663a14 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Thu, 13 Jan 2011 11:23:07 +0000 Subject: [PATCH] Cosmetics --- lib/core/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/core/common.py b/lib/core/common.py index 7f14316c5..75c9f8a7a 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -1974,13 +1974,16 @@ def getInjectionTests(): def priorityFunction(test): retVal = 0 + if test.stype == PAYLOAD.TECHNIQUE.UNION: retVal = 3 + elif 'details' in test and 'dbms' in test.details: if test.details.dbms in getErrorParsedDBMSes(): retVal = 1 else: retVal = 2 + return retVal if getErrorParsedDBMSes():