Gallopsled/pwntools

MIPS Corefile support

Open

#2.254 geöffnet am 4. Aug. 2023

Auf GitHub ansehen
 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)Python (11.127 Stars) (1.684 Forks)batch import
featuregood first issue

Beschreibung

Currently pwntools does not support parsing coredumps that are from MIPS binaries. Would be nice if it did.

FYI: The current list of architectures supported: pwntools/pwnlib/elf/corefile.py:102

prstatus_types = {
    'i386': elf_prstatus_i386,
    'amd64': elf_prstatus_amd64,
    'arm': elf_prstatus_arm,
    'aarch64': elf_prstatus_aarch64
}

Contributor Guide