Skip to content

Commit efec4e7

Browse files
committed
Python: Add missing qldocs
1 parent 98538d2 commit efec4e7

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

python/ql/lib/semmle/python/security/dataflow/CommandInjectionQuery.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ deprecated class Configuration extends TaintTracking::Configuration {
3030
}
3131
}
3232

33+
/**
34+
* A taint-tracking configuration for detecting "command injection" vulnerabilities.
35+
*/
3336
module CommandInjectionConfig implements DataFlow::ConfigSig {
3437
predicate isSource(DataFlow::Node source) { source instanceof Source }
3538

python/ql/lib/semmle/python/security/dataflow/UnsafeShellCommandConstructionQuery.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ deprecated class Configuration extends TaintTracking::Configuration {
3535
}
3636
}
3737

38+
/**
39+
* A taint-tracking configuration for detecting "shell command constructed from library input" vulnerabilities.
40+
*/
3841
module UnsafeShellCommandConstructionConfig implements DataFlow::ConfigSig {
3942
predicate isSource(DataFlow::Node source) { source instanceof Source }
4043

0 commit comments

Comments
 (0)