
Ein Werkzeug für das Reverse Engineering von UEFI-Firmware
Ein Werkzeug zum Reverse Engineering von UEFI-Firmware.
Verwendung:
ida_plugin/uefi_analyser.py und das Verzeichnis ida_plugin/uefi_analyser in das IDA-Plugins-Verzeichnisconfig.json
PE_DIR ist ein Verzeichnis, das alle ausführbaren Images aus der UEFI-Firmware enthält.DUMP_DIR ist ein Verzeichnis, das alle Komponenten aus dem Firmware-Dateisystem enthält.LOGS_DIR ist ein Verzeichnis für Logs.IDA_PATH und IDA64_PATH sind Pfade zu den ausführbaren Dateien von IDA Pro.pip install -r requirements.txt auspython uefi_retool.py aus, um die Hilfemeldung anzuzeigen.python uefi_retool.py
Usage: uefi_retool.py [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
get-images Get executable images from UEFI firmware.
get-info Analyze the entire UEFI firmware.
get-pp Get a list of proprietary protocols in the UEFI firmware.
python uefi_retool.py get-images --help
Usage: uefi_retool.py get-images [OPTIONS] FIRMWARE_PATH
Get executable images from UEFI firmware. Images are stored in "modules"
directory.
Options:
--help Show this message and exit.
Beispiel:
python uefi_retool.py get-images test_fw/fw-tp-x1-carbon-5th.bin
python uefi_retool.py get-info --help
Usage: uefi_retool.py get-info [OPTIONS] FIRMWARE_PATH
Analyze the entire UEFI firmware. The analysis result is saved to .json
file.
Options:
-w, --workers INTEGER Number of workers (8 by default).
--help Show this message and exit.
Beispiel:
python uefi_retool.py get-info -w 6 test_fw/fw-tp-x1-carbon-5th.bin
python uefi_retool.py get-pp --help
Usage: uefi_retool.py get-pp [OPTIONS] FIRMWARE_PATH
Get a list of proprietary protocols in the UEFI firmware. The result is
saved to .json file.
Options:
-w, --workers INTEGER Number of workers (8 by default).
--help Show this message and exit.
Beispiel:
python uefi_retool.py get-pp -w 6 test_fw/fw-tp-x1-carbon-5th.bin
tools/update_edk2_guids.py ist ein Skript, das die Liste der Protokoll-GUIDs aus dem edk2-Projekt aktualisiert.