MCPcopy Create free account
hub / github.com/axhlzy/FridaDebugger / inScope

Function inScope

scripts/thread-stalker.js:251–256  ·  view source on GitHub ↗
(state, lib)

Source from the content-addressed store, hash-verified

249}
250
251function inScope(state, lib) {
252 if (!state.scope) return true; // no scope => allow all
253 if (!lib) return false; // unknown module, scope active => drop
254 for (const s of state.scope) if (lib.includes(s)) return true;
255 return false;
256}
257
258function eventsConfig() {
259 const t = CONFIG.trace;

Callers 1

formatEventFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected