File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
python/ql/lib/semmle/python/security/dataflow Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* Provides default sources, sinks and sanitizers for detecting
3
- * "command injection"
3
+ * "log injection"
4
4
* vulnerabilities, as well as extension points for adding your own.
5
5
*/
6
6
@@ -12,27 +12,27 @@ private import semmle.python.dataflow.new.BarrierGuards
12
12
13
13
/**
14
14
* Provides default sources, sinks and sanitizers for detecting
15
- * "command injection"
15
+ * "log injection"
16
16
* vulnerabilities, as well as extension points for adding your own.
17
17
*/
18
18
module LogInjection {
19
19
/**
20
- * A data flow source for "command injection" vulnerabilities.
20
+ * A data flow source for "log injection" vulnerabilities.
21
21
*/
22
22
abstract class Source extends DataFlow:: Node { }
23
23
24
24
/**
25
- * A data flow sink for "command injection" vulnerabilities.
25
+ * A data flow sink for "log injection" vulnerabilities.
26
26
*/
27
27
abstract class Sink extends DataFlow:: Node { }
28
28
29
29
/**
30
- * A sanitizer for "command injection" vulnerabilities.
30
+ * A sanitizer for "log injection" vulnerabilities.
31
31
*/
32
32
abstract class Sanitizer extends DataFlow:: Node { }
33
33
34
34
/**
35
- * A sanitizer guard for "command injection" vulnerabilities.
35
+ * A sanitizer guard for "log injection" vulnerabilities.
36
36
*/
37
37
abstract class SanitizerGuard extends DataFlow:: BarrierGuard { }
38
38
You can’t perform that action at this time.
0 commit comments