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 dc6f60a commit f4047e0Copy full SHA for f4047e0
1 file changed
swift/ql/src/queries/Security/CWE-611/XXE.ql
@@ -20,5 +20,6 @@ import DataFlow::PathGraph
20
21
from DataFlow::PathNode source, DataFlow::PathNode sink
22
where any(XxeConfiguration c).hasFlowPath(source, sink)
23
-select sink.getNode(), source, sink, "XML parser with enabled external entities depends on $@.",
24
- source.getNode(), "user input"
+select sink.getNode(), source, sink,
+ "XML parsing depends on a $@ without guarding against external entity expansion.",
25
+ source.getNode(), "user-provided value"
0 commit comments