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():