Updating Category ordering, closer to T10

This commit is contained in:
Jason White 2017-07-19 15:54:50 -04:00
parent 9e1e4c1d2a
commit dce962bdeb

View File

@ -38,24 +38,25 @@ public enum Category {
INTRODUCTION("Introduction", new Integer(5)), INTRODUCTION("Introduction", new Integer(5)),
GENERAL("General", new Integer(100)), GENERAL("General", new Integer(100)),
ACCESS_CONTROL("Access Control Flaws", new Integer(200)), INJECTION("Injection Flaws", new Integer(200)),
AJAX_SECURITY("AJAX Security", new Integer(400)), AUTHENTICATION("Authentication Flaws", new Integer(300)),
AUTHENTICATION("Authentication Flaws", new Integer(500)), XSS("Cross-Site Scripting (XSS)", new Integer(400)),
BUFFER_OVERFLOW("Buffer Overflows", new Integer(600)), ACCESS_CONTROL("Access Control Flaws", new Integer(500)),
CODE_QUALITY("Code Quality", new Integer(700)), INSECURE_CONFIGURATION("Insecure Configuration", new Integer(600)),
CONCURRENCY("Concurrency", new Integer(800)), INSECURE_COMMUNICATION("Insecure Communication", new Integer(700)),
XSS("Cross-Site Scripting (XSS)", new Integer(900)), INSECURE_STORAGE("Insecure Storage", new Integer(800)),
ERROR_HANDLING("Improper Error Handling", new Integer(1000)), REQUEST_FORGERIES("Request Forgeries", new Integer(900)),
INJECTION("Injection Flaws", new Integer(1100)), VULNERABLE_COMPONENTS("Vulnerable Components - A9", new Integer(950)),
DOS("Denial of Service", new Integer(1200)), AJAX_SECURITY("AJAX Security", new Integer(1000)),
INSECURE_COMMUNICATION("Insecure Communication", new Integer(1300)), BUFFER_OVERFLOW("Buffer Overflows", new Integer(1100)),
INSECURE_CONFIGURATION("Insecure Configuration", new Integer(1400)), CODE_QUALITY("Code Quality", new Integer(1200)),
INSECURE_STORAGE("Insecure Storage", new Integer(1500)), CONCURRENCY("Concurrency", new Integer(1300)),
ERROR_HANDLING("Improper Error Handling", new Integer(1400)),
DOS("Denial of Service", new Integer(1500)),
MALICIOUS_EXECUTION("Malicious Execution", new Integer(1600)), MALICIOUS_EXECUTION("Malicious Execution", new Integer(1600)),
CLIENT_SIDE("Client side", new Integer(1700)), CLIENT_SIDE("Client side", new Integer(1700)),
SESSION_MANAGEMENT("Session Management Flaws", new Integer(1800)), SESSION_MANAGEMENT("Session Management Flaws", new Integer(1800)),
WEB_SERVICES("Web Services", new Integer(1900)), WEB_SERVICES("Web Services", new Integer(1900)),
VULNERABLE_COMPONENTS("Vulnerable Components - A9", new Integer(1950)),
ADMIN_FUNCTIONS("Admin Functions", new Integer(2000)), ADMIN_FUNCTIONS("Admin Functions", new Integer(2000)),
CHALLENGE("Challenges", new Integer(3000)); CHALLENGE("Challenges", new Integer(3000));