Frida Docs Unified
    Preparing search index...

    Interface HexdumpOptions

    interface HexdumpOptions {
        address?: NativePointer;
        ansi?: boolean;
        header?: boolean;
        length?: number;
        offset?: number;
    }
    Index

    Properties

    address?: NativePointer

    Specifies base address of data being dumped. Defaults to the address of the target argument, if it has an address, and 0 otherwise.

    ansi?: boolean

    Whether ANSI colors should be used. Defaults to false.

    header?: boolean

    Whether a header should be included. Defaults to true.

    length?: number

    Limits how many bytes to dump.

    offset?: number

    Specifies byte offset of where to start dumping. Defaults to 0.