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

Function sendContent

utils/FCAnd.ts:468–481  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

466 }
467
468 function sendContent(obj: any) {
469 let str = JSON.stringify(obj);
470 let stacks = null;
471 if (null != stackFilter && str.indexOf(stackFilter) > -1) {
472 stacks = getStacks();
473 obj['stacks'] = stacks;
474 if (false == firstdiscovery) {
475 obj['firstdiscovery'] = true;
476 firstdiscovery = true;
477 }
478 str = JSON.stringify(obj);
479 }
480 send(str);
481 }
482
483 function getMethodDescription(clsname: string, overload: any) {
484 // @ts-ignore

Callers 1

traceJavaMethodsCoreFunction · 0.85

Calls 1

getStacksFunction · 0.85

Tested by

no test coverage detected