We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f64839 commit bd195e5Copy full SHA for bd195e5
1 file changed
rust/ql/lib/codeql/rust/security/XxeExtensions.qll
@@ -5,6 +5,7 @@
5
6
import rust
7
private import codeql.rust.dataflow.DataFlow
8
+private import codeql.rust.dataflow.FlowBarrier
9
private import codeql.rust.dataflow.FlowSink
10
private import codeql.rust.Concepts
11
@@ -49,6 +50,13 @@ module Xxe {
49
50
)
51
}
52
53
+
54
+ /**
55
+ * A barrier for XXE vulnerabilities from model data.
56
+ */
57
+ private class ModelsAsDataBarrier extends Barrier {
58
+ ModelsAsDataBarrier() { barrierNode(this, "xxe") }
59
+ }
60
61
62
/**
0 commit comments