Skip to content

Commit

Permalink
Rename static variable with name of CWE modified in CWE 2.9 (CWE 134)
Browse files Browse the repository at this point in the history
  • Loading branch information
macacollins committed Dec 31, 2015
1 parent 408398d commit 9c6f396
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -48,7 +48,7 @@ public class GenericVulnerability extends BaseEntity {
public static final String CWE_DIRECT_REQUEST = "Direct Request ('Forced Browsing')";
public static final String CWE_DIRECTORY_INDEXING = "Information Exposure Through Directory Listing";
public static final String CWE_LDAP_INJECTION = "Improper Neutralization of Special Elements used in an LDAP Query ('LDAP Injection')";
public static final String CWE_FORMAT_STRING_INJECTION = "Uncontrolled Format String";
public static final String CWE_FORMAT_STRING_INJECTION = "Use of Externally-Controlled Format String";
public static final String CWE_OS_COMMAND_INJECTION = "Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')";
public static final String CWE_EVAL_INJECTION = "Improper Neutralization of Directives in Dynamically Evaluated Code ('Eval Injection')";
public static final String CWE_CROSS_SITE_REQUEST_FORGERY = "Cross-Site Request Forgery (CSRF)";
Expand Down
Expand Up @@ -33,6 +33,6 @@
*/
public interface DefectSubmitter {

public String createDefect(List<Vulnerability> vulnerabilities, DefectMetadata metadata);
String createDefect(List<Vulnerability> vulnerabilities, DefectMetadata metadata);

}

0 comments on commit 9c6f396

Please sign in to comment.