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

Function isReadableDataPointer

agent/il2cpp-symbols.ts:229–236  ·  view source on GitHub ↗
(value: NativePointer)

Source from the content-addressed store, hash-verified

227}
228
229function isReadableDataPointer(value: NativePointer): boolean {
230 try {
231 const range = Process.findRangeByAddress(value);
232 return range !== null && range.protection.includes("r") && !range.protection.includes("x");
233 } catch (_error) {
234 return false;
235 }
236}
237
238function sanitizeObjectText(value: string | null): string {
239 if (value === null) {

Callers 1

isObjectCandidateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected