Added Phoenix TDK Packer Extractor v2.0_a4

f-strings all the things!
This commit is contained in:
platomav 2022-05-22 00:24:20 +03:00
parent b4a93513f7
commit 7bb0c5f9a9
10 changed files with 379 additions and 138 deletions

View file

@ -3,11 +3,11 @@
"""
Portwell EFI Extract
Portwell EFI BIOS Extractor
Portwell EFI Update Extractor
Copyright (C) 2021-2022 Plato Mavropoulos
"""
TITLE = 'Portwell EFI BIOS Extractor v2.0_a4'
TITLE = 'Portwell EFI Update Extractor v2.0_a5'
import os
import sys
@ -54,8 +54,8 @@ def get_portwell_pe(in_buffer):
return pe_file, pe_data
# Parse & Extract Portwell UEFI Unpacker
def portwell_efi_extract(input_buffer, out_path, padding=0):
extract_path = os.path.join(out_path + '_extracted')
def portwell_efi_extract(input_buffer, output_path, padding=0):
extract_path = os.path.join(f'{output_path}_extracted')
make_dirs(extract_path, delete=True)