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

Method read8

g2all/900/module/mem.js:44–54  ·  view source on GitHub ↗
(offset)

Source from the content-addressed store, hash-verified

42
43export class Addr extends Int {
44 read8(offset) {
45 const m = mem;
46 if (isInteger(offset) && 0 <= offset && offset <= 0xffffffff) {
47 m._set_addr_direct(this);
48 } else {
49 add_and_set_addr(m, offset, this.lo, this.hi);
50 offset = 0;
51 }
52
53 return m.read8_at(offset);
54 }
55
56 read16(offset) {
57 const m = mem;

Callers 15

userlandFunction · 0.45
mallocFunction · 0.45
malloc32Function · 0.45
stringifyFunction · 0.45
launch_chainFunction · 0.45
load_prxFunction · 0.45
extra_gadgetsFunction · 0.45
trigger_sprayFunction · 0.45
rop.jsFile · 0.45
exploit.jsFile · 0.45
stage2_Function · 0.45

Calls 3

add_and_set_addrFunction · 0.70
_set_addr_directMethod · 0.45
read8_atMethod · 0.45

Tested by

no test coverage detected