File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dd-java-agent/agent-iast/src/main/java/com/datadog/iast/model Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,17 @@ public interface VulnerabilityType {
26
26
VulnerabilityType WEAK_CIPHER = type (VulnerabilityTypes .WEAK_CIPHER ).build ();
27
27
VulnerabilityType WEAK_HASH = type (VulnerabilityTypes .WEAK_HASH ).build ();
28
28
VulnerabilityType INSECURE_COOKIE =
29
- type (VulnerabilityTypes .INSECURE_COOKIE ).hash (VulnerabilityType ::evidenceHash ).build ();
29
+ type (VulnerabilityTypes .INSECURE_COOKIE ).hash (VulnerabilityType ::fileAndLineHash ).build ();
30
30
VulnerabilityType NO_HTTPONLY_COOKIE =
31
- type (VulnerabilityTypes .NO_HTTPONLY_COOKIE ).hash (VulnerabilityType ::evidenceHash ).build ();
31
+ type (VulnerabilityTypes .NO_HTTPONLY_COOKIE ).hash (VulnerabilityType ::fileAndLineHash ).build ();
32
32
VulnerabilityType HSTS_HEADER_MISSING =
33
33
type (VulnerabilityTypes .HSTS_HEADER_MISSING ).hash (VulnerabilityType ::serviceHash ).build ();
34
34
VulnerabilityType XCONTENTTYPE_HEADER_MISSING =
35
35
type (VulnerabilityTypes .XCONTENTTYPE_HEADER_MISSING )
36
36
.hash (VulnerabilityType ::serviceHash )
37
37
.build ();
38
38
VulnerabilityType NO_SAMESITE_COOKIE =
39
- type (VulnerabilityTypes .NO_SAMESITE_COOKIE ).hash (VulnerabilityType ::evidenceHash ).build ();
39
+ type (VulnerabilityTypes .NO_SAMESITE_COOKIE ).hash (VulnerabilityType ::fileAndLineHash ).build ();
40
40
41
41
VulnerabilityType SQL_INJECTION =
42
42
type (VulnerabilityTypes .SQL_INJECTION ).mark (SQL_INJECTION_MARK ).build ();
You can’t perform that action at this time.
0 commit comments