We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3def8ec commit d9da944Copy full SHA for d9da944
1 file changed
javascript/ql/lib/semmle/javascript/security/dataflow/UnsafeJQueryPluginQuery.qll
@@ -11,7 +11,9 @@ import UnsafeJQueryPluginCustomizations::UnsafeJQueryPlugin
11
* A taint-tracking configuration for reasoning about XSS in unsafe jQuery plugins.
12
*/
13
module UnsafeJQueryPluginConfig implements DataFlow::ConfigSig {
14
- // TODO: PropertyPresenceSanitizer should not block values in a content.
+ // Note: This query currently misses some results due to two issues:
15
+ // - PropertyPresenceSanitizer blocks values in a content
16
+ // - localFieldStep has been omitted for performance reaons
17
predicate isSource(DataFlow::Node source) { source instanceof Source }
18
19
predicate isSink(DataFlow::Node sink) { sink instanceof Sink }
0 commit comments