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

Function sread64

g2all/700/psfree.js:132–136  ·  view source on GitHub ↗
(str, offset)

Source from the content-addressed store, hash-verified

130}
131
132function sread64(str, offset) {
133 const low = str.charCodeAt(offset) | (str.charCodeAt(offset + 1) << 8) | (str.charCodeAt(offset + 2) << 16) | (str.charCodeAt(offset + 3) << 24);
134 const high = str.charCodeAt(offset + 4) | (str.charCodeAt(offset + 5) << 8) | (str.charCodeAt(offset + 6) << 16) | (str.charCodeAt(offset + 7) << 24);
135 return new Int(low, high);
136}
137
138function prepare_uaf() {
139 const fsets = [];

Callers 2

read64_atMethod · 0.70
read64Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected