File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
javascript/ql/lib/semmle/javascript/security/dataflow Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,14 @@ private import semmle.javascript.security.dataflow.UnsafeJQueryPluginCustomizati
9
9
import UnsafeHtmlConstructionCustomizations:: UnsafeHtmlConstruction
10
10
import semmle.javascript.security.TaintedObject
11
11
12
+ /** DEPRECATED: Mis-spelled class name, alias for Configuration. */
13
+ deprecated class Configration = Configuration ;
14
+
12
15
/**
13
16
* A taint-tracking configuration for reasoning about unsafe HTML constructed from library input vulnerabilities.
14
17
*/
15
- class Configration extends TaintTracking:: Configuration {
16
- Configration ( ) { this = "UnsafeHtmlConstruction" }
18
+ class Configuration extends TaintTracking:: Configuration {
19
+ Configuration ( ) { this = "UnsafeHtmlConstruction" }
17
20
18
21
override predicate isSource ( DataFlow:: Node source , DataFlow:: FlowLabel label ) {
19
22
source instanceof Source and
You can’t perform that action at this time.
0 commit comments