MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / read_mem_as_string

Function read_mem_as_string

restore/702/702.js:60–67  ·  view source on GitHub ↗
(p, sz)

Source from the content-addressed store, hash-verified

58}
59
60var read_mem_as_string = function(p, sz)
61{
62 var x = read_mem_b(p, sz);
63 var ans = '';
64 for(var i = 0; i < x.length; i++)
65 ans += String.fromCharCode(x[i]);
66 return ans;
67}
68
69var write_mem = function(p, data)
70{

Callers 5

c-code.jsFile · 0.70
load_payloadFunction · 0.50
jailbreakFunction · 0.50
load_payloadFunction · 0.50
jailbreakFunction · 0.50

Calls 1

read_mem_bFunction · 0.70

Tested by

no test coverage detected