File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
python/ql/src/semmle/python/security/dataflow Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * Provides a taint-tracking configuration for detecting "SQL Injection " vulnerabilities.
2
+ * Provides a taint-tracking configuration for detecting "SQL injection " vulnerabilities.
3
3
*
4
4
* Note, for performance reasons: only import this file if
5
5
* `SqlInjection::Configuration` is needed, otherwise
@@ -11,13 +11,13 @@ import semmle.python.dataflow.new.DataFlow
11
11
import semmle.python.dataflow.new.TaintTracking
12
12
13
13
/**
14
- * Provides a taint-tracking configuration for detecting "SQL Injection " vulnerabilities.
14
+ * Provides a taint-tracking configuration for detecting "SQL injection " vulnerabilities.
15
15
*/
16
16
module SqlInjection {
17
17
import SqlInjectionCustomizations:: SqlInjection
18
18
19
19
/**
20
- * A taint-tracking configuration for detecting "SQL Injection " vulnerabilities.
20
+ * A taint-tracking configuration for detecting "SQL injection " vulnerabilities.
21
21
*/
22
22
class Configuration extends TaintTracking:: Configuration {
23
23
Configuration ( ) { this = "SqlInjection" }
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Provides default sources, sinks and sanitizers for detecting
3
- * "SQL Injection "
3
+ * "SQL 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
- * "SQL Injection "
15
+ * "SQL injection "
16
16
* vulnerabilities, as well as extension points for adding your own.
17
17
*/
18
18
module SqlInjection {
19
19
/**
20
- * A data flow source for "SQL Injection " vulnerabilities.
20
+ * A data flow source for "SQL injection " vulnerabilities.
21
21
*/
22
22
abstract class Source extends DataFlow:: Node { }
23
23
24
24
/**
25
- * A data flow sink for "SQL Injection " vulnerabilities.
25
+ * A data flow sink for "SQL injection " vulnerabilities.
26
26
*/
27
27
abstract class Sink extends DataFlow:: Node { }
28
28
29
29
/**
30
- * A sanitizer for "SQL Injection " vulnerabilities.
30
+ * A sanitizer for "SQL injection " vulnerabilities.
31
31
*/
32
32
abstract class Sanitizer extends DataFlow:: Node { }
33
33
34
34
/**
35
- * A sanitizer guard for "SQL Injection " vulnerabilities.
35
+ * A sanitizer guard for "SQL 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