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
99import UnsafeHtmlConstructionCustomizations:: UnsafeHtmlConstruction
1010import semmle.javascript.security.TaintedObject
1111
12+ /** DEPRECATED: Mis-spelled class name, alias for Configuration. */
13+ deprecated class Configration = Configuration ;
14+
1215/**
1316 * A taint-tracking configuration for reasoning about unsafe HTML constructed from library input vulnerabilities.
1417 */
15- class Configration extends TaintTracking:: Configuration {
16- Configration ( ) { this = "UnsafeHtmlConstruction" }
18+ class Configuration extends TaintTracking:: Configuration {
19+ Configuration ( ) { this = "UnsafeHtmlConstruction" }
1720
1821 override predicate isSource ( DataFlow:: Node source , DataFlow:: FlowLabel label ) {
1922 source instanceof Source and
You can’t perform that action at this time.
0 commit comments