Skip to content

Commit 0efca82

Browse files
committed
Weak Hashing query wording
1 parent 86b57a1 commit 0efca82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/Security/CWE/CWE-328/WeakHashingProperty.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @name Weak Hashing Property
2+
* @name Weak hashing algorithm specified in properties file
33
* @description Using weak cryptographic algorithms can allow an attacker to compromise security.
44
* @id java/weak-hashing-property
55
* @kind path-problem
@@ -16,5 +16,5 @@ import InsecureAlgorithmPropertyFlow::PathGraph
1616

1717
from InsecureAlgorithmPropertyFlow::PathNode source, InsecureAlgorithmPropertyFlow::PathNode sink
1818
where InsecureAlgorithmPropertyFlow::flowPath(source, sink)
19-
select sink.getNode(), sink, source, "The $@ algorithm is insecure.", source,
19+
select sink.getNode(), sink, source, "The $@ hashing algorithm is insecure.", source,
2020
getWeakHashingAlgorithmName(source.getNode())

0 commit comments

Comments
 (0)