Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f3cf47 commit 0b73088Copy full SHA for 0b73088
1 file changed
ruby/ql/src/queries/security/cwe-312/CleartextStorage.ql
@@ -21,5 +21,5 @@ import DataFlow::PathGraph
21
22
from Configuration config, DataFlow::PathNode source, DataFlow::PathNode sink
23
where config.hasFlowPath(source, sink)
24
-select source.getNode(), source, sink, "Sensitive data returned by $@ is stored here.",
25
- source.getNode(), source.getNode().(Source).describe()
+select source.getNode(), source, sink, "Sensitive data returned by $@ is stored $@.",
+ source.getNode(), source.getNode().(Source).describe(), sink.getNode(), "here"
0 commit comments