Frida Docs Unified
    Preparing search index...

    Interface GlobalAccessHandler

    interface GlobalAccessHandler {
        enumerate(): string[];
        get(property: string): any;
    }
    Index

    Methods

    Methods

    • Queries which additional globals exist.

      Returns string[]

    • Called whenever an attempt to access a non-existent global variable is made. Return undefined to treat the variable as inexistent.

      Parameters

      • property: string

        Name of non-existent global that is being accessed.

      Returns any