JS: Follow naming convention in InsecureModuleFlow module

This commit is contained in:
Asger F
2024-12-13 11:09:59 +01:00
parent d381ab1260
commit 4e25036cdc
2 changed files with 3 additions and 3 deletions

View File

@@ -13,9 +13,9 @@
import javascript
import semmle.javascript.security.dataflow.InsecureDownloadQuery
import DataFlow::DeduplicatePathGraph<InsecureDownload::PathNode, InsecureDownload::PathGraph>
import DataFlow::DeduplicatePathGraph<InsecureDownloadFlow::PathNode, InsecureDownloadFlow::PathGraph>
from PathNode source, PathNode sink
where InsecureDownload::flowPath(source.getAnOriginalPathNode(), sink.getAnOriginalPathNode())
where InsecureDownloadFlow::flowPath(source.getAnOriginalPathNode(), sink.getAnOriginalPathNode())
select sink.getNode(), source, sink, "$@ of sensitive file from $@.",
sink.getNode().(Sink).getDownloadCall(), "Download", source.getNode(), "HTTP source"