diff --git a/lib/core/enums.py b/lib/core/enums.py index 62cbbceda..9f99a7cda 100644 --- a/lib/core/enums.py +++ b/lib/core/enums.py @@ -173,39 +173,39 @@ class REDIRECTION: class PAYLOAD: SQLINJECTION = { - 1: "boolean-based blind", - 2: "error-based", - 3: "UNION query", - 4: "stacked queries", - 5: "AND/OR time-based blind", - 6: "inline query" + 1: "boolean-based blind", + 2: "error-based", + 3: "UNION query", + 4: "stacked queries", + 5: "AND/OR time-based blind", + 6: "inline query" } PARAMETER = { - 1: "Unescaped numeric", - 2: "Single quoted string", - 3: "LIKE single quoted string", - 4: "Double quoted string", - 5: "LIKE double quoted string" + 1: "Unescaped numeric", + 2: "Single quoted string", + 3: "LIKE single quoted string", + 4: "Double quoted string", + 5: "LIKE double quoted string" } RISK = { - 0: "No risk", - 1: "Low risk", - 2: "Medium risk", - 3: "High risk" + 0: "No risk", + 1: "Low risk", + 2: "Medium risk", + 3: "High risk" } CLAUSE = { - 0: "Always", - 1: "WHERE", - 2: "GROUP BY", - 3: "ORDER BY", - 4: "LIMIT", - 5: "OFFSET", - 6: "TOP", - 7: "Table name", - 8: "Column name" + 0: "Always", + 1: "WHERE", + 2: "GROUP BY", + 3: "ORDER BY", + 4: "LIMIT", + 5: "OFFSET", + 6: "TOP", + 7: "Table name", + 8: "Column name" } class METHOD: