
UEFIファームウェアのリバースエンジニアリングのためのツール
UEFIファームウェアリバースエンジニアリングのためのツール。
使用方法:
ida_plugin/uefi_analyser.pyスクリプトとida_plugin/uefi_analyserディレクトリをIDAプラグインディレクトリにコピーしますconfig.jsonファイルを編集します
PE_DIRはUEFIファームウェアからのすべての実行可能イメージを含むディレクトリですDUMP_DIRはファームウェアファイルシステムからのすべてのコンポーネントを含むディレクトリですLOGS_DIRはログ用のディレクトリですIDA_PATHおよびIDA64_PATHはIDA Pro実行可能ファイルへのパスですpip install -r requirements.txtを実行しますpython uefi_retool.pyコマンドを実行してヘルプメッセージを表示します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.
例:
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.
例:
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.
例:
python uefi_retool.py get-pp -w 6 test_fw/fw-tp-x1-carbon-5th.bin
tools/update_edk2_guids.pyはedk2プロジェクトからプロトコルGUIDリストを更新するスクリプトです