Various BIOS Utilities for Modding/Research
Project description
BIOSUtilities
About
Various BIOS/UEFI-related utilities which aid in modding and/or research
Usage
Main
The "main" script provides a simple way to check and parse each of the user provided files against all utilities, in succession. It is ideal for quick drag & drop operations but lacks the finer control of the BIOSUtility method. If needed, a few options can be set, by using the command line:
usage: main.py [-h] [--output-folder OUTPUT_FOLDER] [--pause-exit] input_files [input_files ...]
positional arguments:
input_files
options:
-h, --help show help message and exit
--output-folder OUTPUT_FOLDER extraction folder
--pause-exit pause on exit
python ./main.py "/path/to/input/file.bin" --output-folder "/path/to/file extractions"
BIOSUtility
Each utility is derived from a base template: BIOSUtility. The base BIOSUtility offers the following options, applicable to all utilities:
usage: [-h] [-e] [-o OUTPUT_DIR] [paths ...]
positional arguments:
paths
options:
-h, --help show help message and exit
-e, --auto-exit skip user action prompts
-o OUTPUT_DIR, --output-dir OUTPUT_DIR output extraction directory
python -m biosutilities.ami_pfat_extract -e "/path/to/input/file1.bin" "/path/to/input/file2.bin" "/path/to/input/folder/with/files/" -o "/path/to/output_directory"
If no arguments are provided, the BIOSUtility.run_utility() method gets executed, which will request the input and output paths from the user. If no output path is provided, the utility will use the parent directory of the first input file or fallback to the runtime execution directory.
Enter input file or directory path: "C:\P5405CSA.303"
Enter output directory path: "C:\P5405CSA.303_output"
Package
All utilities form the "biosutilities" python package, which can be installed from PyPi:
python -m pip install --upgrade biosutilities
Installing the python package is the recommended way to call one or more utilities programatically, while fully controlling arguments and options.
from biosutilities.ami_pfat_extract import AmiPfatExtract
ami_pfat_extractor = AmiPfatExtract()
ami_pfat_extractor.check_format(input_object='/path/to/input/file.bin')
ami_pfat_extractor.parse_format(input_object='/path/to/input/file.bin')
from biosutilities.dell_pfs_extract import DellPfsExtract
dell_pfs_extractor = DellPfsExtract()
with open(file='/path/to/input/file.bin', mode='rb') as pfs_file:
pfs_buffer = pfs_file.read()
dell_pfs_extractor.check_format(input_object=pfs_buffer)
dell_pfs_extractor.parse_format(input_object=pfs_buffer)
It also allows to use directly the four public methods which are inherited by every utility from the base BIOSUtility class.
run_utility
Run utility after checking for supported format
run_utility(padding: int = 0) -> int
check_format
Check if input object is of specific supported format
check_format(input_object: str | bytes | bytearray) -> bool
parse_format
Process input object as a specific supported format
parse_format(input_object: str | bytes | bytearray, extract_path: str, padding: int = 0) -> int | None
show_version
Show title and version of utility
show_version(is_boxed: bool = True, padding: int = 0) -> None
Requirements
There are two main types of requirements (dependencies), depending on the utility.
Python Packages
Python packages can be installed via Pypi (e.g. pip)
python -m pip install --upgrade -r requirements.txt
python -m pip install --upgrade pefile
External Executables / Python Scripts
External executables (e.g. 7-Zip, TianoCompress, UEFIFind) and Python scripts (e.g. BIOS Guard Script Tool) need to be found via PATH.
Linux
or
sudo install "/path/to/downloaded/external/executable/to/install"
Windows
MacOS
Utilities
- AMI BIOS Guard Extractor
- AMI UCP Update Extractor
- Apple EFI IM4P Splitter
- Apple EFI Image Identifier
- Apple EFI Package Extractor
- Apple EFI PBZX Extractor
- Award BIOS Module Extractor
- Dell PFS Update Extractor
- Fujitsu SFX BIOS Extractor
- Fujitsu UPC BIOS Extractor
- Insyde iFlash/iFdPacker Extractor
- Panasonic BIOS Package Extractor
- Phoenix TDK Packer Extractor
- Portwell EFI Update Extractor
- Toshiba BIOS COM Extractor
- VAIO Packaging Manager Extractor
AMI BIOS Guard Extractor
Description
Parses AMI BIOS Guard (a.k.a. PFAT, Platform Firmware Armoring Technology) images, extracts their SPI/BIOS/UEFI firmware components and optionally decompiles the Intel BIOS Guard Scripts. It supports all AMI PFAT revisions and formats, including those with Index Information tables or nested AMI PFAT structures. The output comprises only final firmware components which are directly usable by end users.
Note that the AMI PFAT structure may not have an explicit component order. AMI's BIOS Guard Firmware Update Tool (AFUBGT) updates components based on the user/OEM provided Parameters and Options or Index Information table, when applicable. Thus, merging all the components together does not usually yield a proper SPI/BIOS/UEFI image. The utility does generate such a merged file with the name "00 -- <filename>_ALL.bin" but it is up to the end user to determine its usefulness. Additionally, any custom OEM data, after the AMI PFAT structure, is stored in the last file with the name "<n+1> -- _OOB.bin" and it is once again up to the end user to determine its usefulness. In cases where the trailing custom OEM data includes a nested AMI PFAT structure, the utility will process and extract it automatically as well.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
Optionally, to decompile the AMI PFAT > Intel BIOS Guard Scripts, you must have the following 3rd party python script at PATH:
- BIOS Guard Script Tool (i.e. big_script_tool.py)
AMI UCP Update Extractor
Description
Parses AMI UCP (Utility Configuration Program) Update executables, extracts their firmware components (e.g. SPI/BIOS/UEFI, EC, ME etc) and shows all relevant info. It supports all AMI UCP revisions and formats, including those with nested AMI PFAT, AMI UCP or Insyde iFlash/iFdPacker structures. The output comprises only final firmware components and utilities which are directly usable by end users.
Usage
Additional optional arguments are provided for this utility:
- -c or --checksum : verify AMI UCP Checksums (slow)
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tools at PATH:
- TianoCompress (i.e. TianoCompress.exe for Windows or TianoCompress for Linux)
- 7-Zip Console (i.e. 7z.exe for Windows or 7zzs for Linux)
Optionally, to decompile the AMI UCP > AMI PFAT > Intel BIOS Guard Scripts (when applicable), you must have the following 3rd party python script at PATH:
- BIOS Guard Script Tool (i.e. big_script_tool.py)
Apple EFI IM4P Splitter
Description
Parses Apple IM4P multi-EFI files and splits all detected EFI firmware into separate Intel SPI/BIOS images. The output comprises only final firmware components and utilities which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you do not need any prerequisites.
Apple EFI Image Identifier
Description
Parses Apple EFI images and identifies them based on Intel's official $IBIOSI$ tag, which contains info such as Model, Version, Build, Date and Time. Optionally, the utility can rename the input Apple EFI image based on the retrieved $IBIOSI$ tag info, while also making sure to differentiate any EFI images with the same $IBIOSI$ tag (e.g. Production, Pre-Production) by appending a checksum of their data.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tools at PATH:
- UEFIFind (i.e. UEFIFind.exe for Windows or UEFIFind for Linux)
- UEFIExtract (i.e. UEFIExtract.exe for Windows or UEFIExtract for Linux)
Apple EFI Package Extractor
Description
Parses Apple EFI PKG firmware packages (i.e. FirmwareUpdate.pkg, BridgeOSUpdateCustomer.pkg), extracts their EFI images, splits those in IM4P format and identifies/renames the final Intel SPI/BIOS images accordingly. The output comprises only final firmware components which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tools at PATH:
- 7-Zip Console (i.e. 7z.exe for Windows or 7zzs for Linux)
Apple EFI PBZX Extractor
Description
Parses Apple EFI PBZX images, re-assembles their CPIO payload and extracts its firmware components (e.g. IM4P, EFI, Utilities, Scripts etc). It supports CPIO re-assembly from both Raw and XZ compressed PBZX Chunks. The output comprises only final firmware components and utilities which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tools at PATH:
- 7-Zip Console (i.e. 7z.exe for Windows or 7zzs for Linux)
Award BIOS Module Extractor
Description
Parses Award BIOS images and extracts their modules (e.g. RAID, MEMINIT, _EN_CODE, awardext etc). It supports all Award BIOS image revisions and formats, including those which contain LZH compressed files. The output comprises only final firmware components which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tool at PATH:
- 7-Zip Console (i.e. 7z.exe for Windows or 7zzs for Linux)
Dell PFS Update Extractor
Description
Parses Dell PFS Update images and extracts their Firmware (e.g. SPI, BIOS/UEFI, EC, ME etc) and Utilities (e.g. Flasher etc) component sections. It supports all Dell PFS revisions and formats, including those which are originally LZMA compressed in ThinOS packages (PKG), ZLIB compressed or Intel BIOS Guard (PFAT) protected. The output comprises only final firmware components which are directly usable by end users.
Usage
Additional optional arguments are provided for this utility:
- -a or --advanced : extract signatures and metadata
- -s or --structure : show PFS structure information
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
Optionally, to decompile the Intel BIOS Guard (PFAT) Scripts, you must have the following 3rd party utility at PATH:
- BIOS Guard Script Tool (i.e. big_script_tool.py)
Fujitsu SFX BIOS Extractor
Description
Parses Fujitsu SFX BIOS images and extracts their obfuscated Microsoft CAB archived firmware (e.g. SPI, BIOS/UEFI, EC, ME etc) and utilities (e.g. WinPhlash, PHLASH.INI etc) components. The output comprises only final firmware components which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tool at PATH:
- 7-Zip Console (i.e. 7z.exe for Windows or 7zzs for Linux)
Fujitsu UPC BIOS Extractor
Description
Parses Fujitsu UPC BIOS images and extracts their EFI compressed SPI/BIOS/UEFI firmware component. The output comprises only a final firmware component which is directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tool at PATH:
- TianoCompress (i.e. TianoCompress.exe for Windows or TianoCompress for Linux)
Insyde iFlash/iFdPacker Extractor
Description
Parses Insyde iFlash/iFdPacker Update images and extracts their firmware (e.g. SPI, BIOS/UEFI, EC, ME etc) and utilities (e.g. InsydeFlash, H2OFFT, FlsHook, iscflash, platform.ini etc) components. It supports all Insyde iFlash/iFdPacker revisions and formats, including those which are 7-Zip SFX 7z compressed in raw, obfuscated or password-protected form. The output comprises only final firmware components which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you do not need any prerequisites.
Panasonic BIOS Package Extractor
Description
Parses Panasonic BIOS Package executables and extracts their firmware (e.g. SPI, BIOS/UEFI, EC etc) and utilities (e.g. winprom, configuration etc) components. It supports all Panasonic BIOS Package revisions and formats, including those which contain LZNT1 compressed files and/or AMI PFAT payloads. The output comprises only final firmware components which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party Python modules installed:
Moreover, you must have the following 3rd party tool at PATH:
- 7-Zip Console (i.e. 7z.exe for Windows or 7zzs for Linux)
Phoenix TDK Packer Extractor
Description
Parses Phoenix Tools Development Kit (TDK) Packer executables and extracts their firmware (e.g. SPI, BIOS/UEFI, EC etc) and utilities (e.g. WinFlash etc) components. It supports all Phoenix TDK Packer revisions and formats, including those which contain LZMA compressed files. The output comprises only final firmware components which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party Python module installed:
Portwell EFI Update Extractor
Description
Parses Portwell UEFI Unpacker EFI executables (usually named "Update.efi") and extracts their firmware (e.g. SPI, BIOS/UEFI, EC etc) and utilities (e.g. Flasher etc) components. It supports all known Portwell UEFI Unpacker revisions (v1.1, v1.2, v2.0) and formats (used, empty, null), including those which contain EFI compressed files. The output comprises only final firmware components and utilities which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party Python module installed:
Moreover, you must have the following 3rd party tool at PATH:
- TianoCompress (i.e. TianoCompress.exe for Windows or TianoCompress for Linux)
Toshiba BIOS COM Extractor
Description
Parses Toshiba BIOS COM images and extracts their raw or compressed SPI/BIOS/UEFI firmware component. This utility is effectively a python wrapper around ToshibaComExtractor by LongSoft. The output comprises only a final firmware component which is directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tool at PATH:
VAIO Packaging Manager Extractor
Description
Parses VAIO Packaging Manager executables and extracts their firmware (e.g. SPI, BIOS/UEFI, EC, ME etc), utilities (e.g. WBFLASH etc) and driver (audio, video etc) components. If direct extraction fails, it attempts to unlock the executable in order to run at all non-VAIO systems and allow the user to choose the extraction location. It supports all VAIO Packaging Manager revisions and formats, including those which contain obfuscated Microsoft CAB archives or obfuscated unlock values. The output comprises only final firmware components which are directly usable by end users.
Usage
No additional optional arguments are provided for this utility.
Compatibility
Should work at all Windows, Linux or macOS operating systems which have Python 3.10 or newer support.
Prerequisites
To run the utility, you must have the following 3rd party tool at PATH:
- 7-Zip Console (i.e. 7z.exe for Windows or 7zzs for Linux)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for biosutilities-24.10.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b16ead755dfd33f866ea3b796f970ea12361a2022c836eaa3893a07e2266ebe |
|
MD5 | f473365bb42c35614d5473b65b7dd6b9 |
|
BLAKE2b-256 | 51494887fea1be250f44e602a479226e36353326879c6ff105901bb0479a4f86 |