File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import semmle.code.cpp.ir.dataflow.TaintTracking
19
19
import DataFlow:: PathGraph
20
20
21
21
/**
22
- * Taint flow from user input to a buffer write.
22
+ * A taint flow configuration for flow from user input to a buffer write.
23
23
*/
24
24
class ToBufferConfiguration extends TaintTracking:: Configuration {
25
25
ToBufferConfiguration ( ) { this = "ToBufferConfiguration" }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import semmle.code.cpp.dataflow.TaintTracking
21
21
import DataFlow:: PathGraph
22
22
23
23
/**
24
- * Taint flow from a sensitive expression to a `FileWrite` sink.
24
+ * A taint flow configuration for flow from a sensitive expression to a `FileWrite` sink.
25
25
*/
26
26
class FromSensitiveConfiguration extends TaintTracking:: Configuration {
27
27
FromSensitiveConfiguration ( ) { this = "FromSensitiveConfiguration" }
Original file line number Diff line number Diff line change @@ -217,7 +217,8 @@ class Encrypted extends Expr {
217
217
}
218
218
219
219
/**
220
- * Taint flow from a sensitive expression.
220
+ * A taint flow configuration for flow from a sensitive expression to a network
221
+ * operation or encryption operation.
221
222
*/
222
223
class FromSensitiveConfiguration extends TaintTracking:: Configuration {
223
224
FromSensitiveConfiguration ( ) { this = "FromSensitiveConfiguration" }
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ predicate sqlite_encryption_used() {
29
29
}
30
30
31
31
/**
32
- * Taint flow from a sensitive expression to a `SqliteFunctionCall` sink.
32
+ * A taint flow configuration for flow from a sensitive expression to a `SqliteFunctionCall` sink.
33
33
*/
34
34
class FromSensitiveConfiguration extends TaintTracking:: Configuration {
35
35
FromSensitiveConfiguration ( ) { this = "FromSensitiveConfiguration" }
You can’t perform that action at this time.
0 commit comments