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
1919import DataFlow:: PathGraph
2020
2121/**
22- * Taint flow from user input to a buffer write.
22+ * A taint flow configuration for flow from user input to a buffer write.
2323 */
2424class ToBufferConfiguration extends TaintTracking:: Configuration {
2525 ToBufferConfiguration ( ) { this = "ToBufferConfiguration" }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import semmle.code.cpp.dataflow.TaintTracking
2121import DataFlow:: PathGraph
2222
2323/**
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.
2525 */
2626class FromSensitiveConfiguration extends TaintTracking:: Configuration {
2727 FromSensitiveConfiguration ( ) { this = "FromSensitiveConfiguration" }
Original file line number Diff line number Diff line change @@ -217,7 +217,8 @@ class Encrypted extends Expr {
217217}
218218
219219/**
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.
221222 */
222223class FromSensitiveConfiguration extends TaintTracking:: Configuration {
223224 FromSensitiveConfiguration ( ) { this = "FromSensitiveConfiguration" }
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ predicate sqlite_encryption_used() {
2929}
3030
3131/**
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.
3333 */
3434class FromSensitiveConfiguration extends TaintTracking:: Configuration {
3535 FromSensitiveConfiguration ( ) { this = "FromSensitiveConfiguration" }
You can’t perform that action at this time.
0 commit comments