We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8951bfe + 28ace84 commit 3f18599Copy full SHA for 3f18599
libs/dao/src/main/java/com/akto/util/enums/GlobalEnums.java
@@ -44,6 +44,8 @@ public enum TestCategory {
44
LFI("LFI", Severity.HIGH, "Local File Inclusion (LFI)", "Local File Inclusion"),
45
XSS("XSS", Severity.HIGH, "Cross-site scripting (XSS)", "Cross-site scripting"),
46
IIM("IIM", Severity.HIGH, "Improper Inventory Management (IIM)", "Improper Inventory Management"),
47
+ INJECT("INJECT", Severity.MEDIUM, "Injection Attacks (INJECT)", "Injection Attacks"),
48
+ INPUT("INPUT", Severity.MEDIUM, "Input Validation (INPUT)", "Input Validation"),
49
LLM("LLM",Severity.HIGH,"LLM (Large Language Models) Top 10","LLM");
50
51
private final String name;
0 commit comments