Skip to content

Commit 0b2caca

Browse files
committed
Fix CWE for Injections in FindBugs results parser.
1 parent f2f4c8e commit 0b2caca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/owasp/benchmark/score/parsers/FindbugsReader.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ else if ( cwe.equals( "326" ) ) {
122122

123123
//Injections
124124
case "SECSQLIHIB" : return 564; // Hibernate Injection, child of SQL Injection
125-
case "SECSQLIJDO" : return 72;
126-
case "SECSQLIJPA" : return 72;
127-
case "SECSQLISPRJDBC" : return 72;
128-
case "SECSQLIJDBC" : return 72;
125+
case "SECSQLIJDO" : return 89;
126+
case "SECSQLIJPA" : return 89;
127+
case "SECSQLISPRJDBC" : return 89;
128+
case "SECSQLIJDBC" : return 89;
129129

130130
//LDAP injection
131131
case "SECLDAPI" : return 90; // LDAP injection

0 commit comments

Comments
 (0)