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

Method writeMemory

agent/debugger.ts:306–314  ·  view source on GitHub ↗
(addressInput: PointerInput | string, value: PointerInput | number | string, type: MemoryWriteType = "pointer")

Source from the content-addressed store, hash-verified

304 }
305
306 writeMemory(addressInput: PointerInput | string, value: PointerInput | number | string, type: MemoryWriteType = "pointer"): void {
307 const address = this.resolveAddressInput(addressInput);
308 if (address === null) {
309 log(`[mem] invalid address ${String(addressInput)}`, "red");
310 return;
311 }
312
313 writeMemoryValue(address, value, type);
314 }
315
316 listFields(input?: PointerInput | string): void {
317 if (input === undefined) {

Callers 1

index.tsFile · 0.80

Calls 3

resolveAddressInputMethod · 0.95
logFunction · 0.85
writeMemoryValueFunction · 0.85

Tested by

no test coverage detected