MCPcopy Create free account
hub / github.com/deathmemory/FridaContainer / match

Function match

utils/FCAnd.ts:457–466  ·  view source on GitHub ↗
(destCls: string, curClsName: string)

Source from the content-addressed store, hash-verified

455 export function traceJavaMethods_custom(clazzes: string[], clsWhitelist?: null | any, stackFilter?: null | string) {
456
457 function match(destCls: string, curClsName: string) {
458 let mode = destCls[0];
459 let ex = destCls.substr(2);
460 if (mode == 'E') {
461 return ex == curClsName;
462 }
463 else {
464 return curClsName.match(ex);
465 }
466 }
467
468 function sendContent(obj: any) {
469 let str = JSON.stringify(obj);

Callers 1

traceJavaMethods_customFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected