This commit is contained in:
Miroslav Stampar
2022-09-06 13:00:47 +02:00
parent 4cdc3af585
commit 2382d2654e
2 changed files with 2 additions and 2 deletions

View File

@@ -3708,7 +3708,7 @@ def getSortedInjectionTests():
if test.stype == PAYLOAD.TECHNIQUE.UNION:
retVal = SORT_ORDER.LAST
elif "details" in test and "dbms" in test.details:
elif "details" in test and "dbms" in (test.details or {}):
if intersect(test.details.dbms, Backend.getIdentifiedDbms()):
retVal = SORT_ORDER.SECOND
else: