mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
20 lines
621 B
Plaintext
20 lines
621 B
Plaintext
import javascript
|
|
|
|
query predicate browserObject(Electron::BrowserObject obj) { any() }
|
|
|
|
query predicate clientRequest_getADataNode(Electron::ElectronClientRequest cr, DataFlow::Node data) {
|
|
cr.getADataNode() = data
|
|
}
|
|
|
|
query predicate clientRequest(Electron::ElectronClientRequest cr) { any() }
|
|
|
|
query predicate ipcFlow(DataFlow::Node pred, DataFlow::Node succ) {
|
|
DataFlow::SharedFlowStep::step(pred, succ)
|
|
}
|
|
|
|
query predicate remoteFlowSources(RemoteFlowSource source) { any() }
|
|
|
|
query predicate webContents(Electron::WebContents wc) { any() }
|
|
|
|
query predicate webPreferences(Electron::WebPreferences pref) { any() }
|