We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e6613 commit 5156420Copy full SHA for 5156420
csharp/ql/lib/semmle/code/csharp/security/dataflow/flowsources/FlowSources.qll
@@ -1,3 +1,5 @@
1
+/** Provides classes representing various flow sources for taint tracking. */
2
+
3
private import semmle.code.csharp.dataflow.internal.ExternalFlow
4
private import codeql.threatmodels.ThreatModels
5
import semmle.code.csharp.security.dataflow.flowsources.Remote
csharp/ql/lib/semmle/code/csharp/security/dataflow/flowsources/Stored.qll
@@ -16,6 +16,9 @@ abstract class StoredFlowSource extends SourceNode {
16
override string getThreatModel() { result = "local" }
17
}
18
19
+/**
20
+ * A node with input from a database.
21
+ */
22
abstract class DatabaseInputSource extends StoredFlowSource {
23
override string getThreatModel() { result = "database" }
24
0 commit comments