JS: support http.request URL requests

This commit is contained in:
Esben Sparre Andreasen
2018-09-03 13:15:53 +02:00
parent 0a89f1a420
commit cb2a6ede59

View File

@@ -157,7 +157,11 @@ private class NodeHttpUrlRequest extends CustomUrlRequest {
exists (string moduleName, DataFlow::SourceNode callee |
this = callee.getACall() |
(moduleName = "http" or moduleName = "https") and
callee = DataFlow::moduleMember(moduleName, httpMethodName()) and
(
callee = DataFlow::moduleMember(moduleName, httpMethodName())
or
callee = DataFlow::moduleMember(moduleName, "request")
) and
url = getArgument(0)
)
}