public static final String FACET_TYPES = "types";
public static final String FACET_OLD_DEFAULT = "true";
public static final String FACET_CWE = "cwe";
+ /**
+ * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+ */
@Deprecated(since = "10.0", forRemoval = true)
public static final String FACET_SANS_TOP_25 = "sansTop25";
public static final String FACET_OWASP_TOP_10 = "owaspTop10";
public final class SecurityStandards {
public static final String UNKNOWN_STANDARD = "unknown";
+
+ /**
+ * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+ */
@Deprecated(since = "10.0", forRemoval = true)
public static final String SANS_TOP_25_INSECURE_INTERACTION = "insecure-interaction";
@Deprecated(since = "10.0", forRemoval = true)
private static final String CWE_PREFIX = "cwe:";
// See https://www.sans.org/top25-software-errors
+ /**
+ * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+ */
@Deprecated(since = "10.0", forRemoval = true)
private static final Set<String> INSECURE_CWE = new HashSet<>(asList("89", "78", "79", "434", "352", "601"));
@Deprecated(since = "10.0", forRemoval = true)
private static final Set<String> POROUS_CWE = new HashSet<>(asList("306", "862", "798", "311", "807", "250", "863", "732", "327", "307", "759"));
/**
- * @deprecated SansTop25 report is outdated and will be removed from version 11.0
+ * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
*/
@Deprecated
public static final Map<String, Set<String>> CWES_BY_SANS_TOP_25 = ImmutableMap.of(
}
/**
- * @deprecated SansTop25 report is outdated and will be removed from version 11.0
+ * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
*/
@Deprecated
public Set<String> getSansTop25() {
private static final String PARAM_OWASP_ASVS_40 = "owaspAsvs-4.0";
private static final String PARAM_OWASP_TOP_10_2017 = "owaspTop10";
private static final String PARAM_OWASP_TOP_10_2021 = "owaspTop10-2021";
+ /**
+ * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+ */
@Deprecated(since = "10.0", forRemoval = true)
private static final String PARAM_SANS_TOP_25 = "sansTop25";
private static final String PARAM_SONARSOURCE_SECURITY = "sonarsourceSecurity";
public static final String PARAM_CWE = "cwe";
public static final String PARAM_OWASP_TOP_10 = "owaspTop10";
public static final String PARAM_OWASP_TOP_10_2021 = "owaspTop10-2021";
+ /**
+ * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+ */
@Deprecated(since = "10.0", forRemoval = true)
public static final String PARAM_SANS_TOP_25 = "sansTop25";
public static final String PARAM_SONARSOURCE_SECURITY = "sonarsourceSecurity";