File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ private class LdapClientDNSink extends LdapSink {
98
98
/**
99
99
* DEPRECATED: Use `LdapInjectionFlow` instead.
100
100
*
101
- * A taint-tracking configuration for reasoning about when an `RemoteFlowSource`
101
+ * A taint-tracking configuration for reasoning about when a `RemoteFlowSource`
102
102
* flows into an argument or field that is vulnerable to LDAP injection.
103
103
*/
104
104
deprecated class LdapInjectionConfiguration extends TaintTracking:: Configuration {
@@ -120,7 +120,7 @@ private module LdapInjectionConfig implements DataFlow::ConfigSig {
120
120
}
121
121
122
122
/**
123
- * Tracks taint flow for reasoning about when an `RemoteFlowSource` flows
123
+ * Tracks taint flow for reasoning about when a `RemoteFlowSource` flows
124
124
* into an argument or field that is vulnerable to LDAP injection.
125
125
*/
126
126
module LdapInjectionFlow = TaintTracking:: Global< LdapInjectionConfig > ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import go
13
13
import DsnInjectionCustomizations
14
14
import DsnInjectionFlow:: PathGraph
15
15
16
- /** An remote flow source taken as a source for the `DsnInjection` taint-flow configuration. */
16
+ /** A remote flow source taken as a source for the `DsnInjection` taint-flow configuration. */
17
17
private class RemoteFlowAsSource extends Source instanceof RemoteFlowSource { }
18
18
19
19
from DsnInjectionFlow:: PathNode source , DsnInjectionFlow:: PathNode sink
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ module UntrustedToPassthroughTypeConversionConfig implements DataFlow::ConfigSig
53
53
}
54
54
55
55
/**
56
- * Tracks taint flow for reasoning about when an `RemoteFlowSource` is
56
+ * Tracks taint flow for reasoning about when a `RemoteFlowSource` is
57
57
* converted into a special "passthrough" type which will not be escaped by the
58
58
* template generator; this allows the injection of arbitrary content (html,
59
59
* css, js) into the generated output of the templates.
@@ -115,7 +115,7 @@ module FromUntrustedToTemplateExecutionCallConfig implements DataFlow::ConfigSig
115
115
}
116
116
117
117
/**
118
- * Tracks taint flow from an `RemoteFlowSource` into a template executor
118
+ * Tracks taint flow from a `RemoteFlowSource` into a template executor
119
119
* call.
120
120
*/
121
121
module FromUntrustedToTemplateExecutionCallFlow =
Original file line number Diff line number Diff line change @@ -78,13 +78,13 @@ module UntrustedToAllowOriginConfigConfig implements DataFlow::ConfigSig {
78
78
}
79
79
80
80
/**
81
- * Tracks taint flowfor reasoning about when an `RemoteFlowSource` flows to
81
+ * Tracks taint flowfor reasoning about when a `RemoteFlowSource` flows to
82
82
* a `HeaderWrite` that writes an `Access-Control-Allow-Origin` header's value.
83
83
*/
84
84
module UntrustedToAllowOriginHeaderFlow = TaintTracking:: Global< UntrustedToAllowOriginHeaderConfig > ;
85
85
86
86
/**
87
- * Tracks taint flowfor reasoning about when an `RemoteFlowSource` flows to
87
+ * Tracks taint flowfor reasoning about when a `RemoteFlowSource` flows to
88
88
* a `AllowOriginsWrite` that writes an `Access-Control-Allow-Origin` header's value.
89
89
*/
90
90
module UntrustedToAllowOriginConfigFlow = TaintTracking:: Global< UntrustedToAllowOriginConfigConfig > ;
@@ -208,7 +208,7 @@ module FromUntrustedConfig implements DataFlow::ConfigSig {
208
208
}
209
209
210
210
/**
211
- * Tracks taint flow for reasoning about when an `RemoteFlowSource` flows
211
+ * Tracks taint flow for reasoning about when a `RemoteFlowSource` flows
212
212
* somewhere.
213
213
*/
214
214
module FromUntrustedFlow = TaintTracking:: Global< FromUntrustedConfig > ;
You can’t perform that action at this time.
0 commit comments