File tree Expand file tree Collapse file tree
python/ql/lib/semmle/python/security/dataflow Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/**
22 * Provides default sources, sinks and sanitizers for detecting
3- * "command injection"
3+ * "log injection"
44 * vulnerabilities, as well as extension points for adding your own.
55 */
66
@@ -12,27 +12,27 @@ private import semmle.python.dataflow.new.BarrierGuards
1212
1313/**
1414 * Provides default sources, sinks and sanitizers for detecting
15- * "command injection"
15+ * "log injection"
1616 * vulnerabilities, as well as extension points for adding your own.
1717 */
1818module LogInjection {
1919 /**
20- * A data flow source for "command injection" vulnerabilities.
20+ * A data flow source for "log injection" vulnerabilities.
2121 */
2222 abstract class Source extends DataFlow:: Node { }
2323
2424 /**
25- * A data flow sink for "command injection" vulnerabilities.
25+ * A data flow sink for "log injection" vulnerabilities.
2626 */
2727 abstract class Sink extends DataFlow:: Node { }
2828
2929 /**
30- * A sanitizer for "command injection" vulnerabilities.
30+ * A sanitizer for "log injection" vulnerabilities.
3131 */
3232 abstract class Sanitizer extends DataFlow:: Node { }
3333
3434 /**
35- * A sanitizer guard for "command injection" vulnerabilities.
35+ * A sanitizer guard for "log injection" vulnerabilities.
3636 */
3737 abstract class SanitizerGuard extends DataFlow:: BarrierGuard { }
3838
You can’t perform that action at this time.
0 commit comments