Created
December 27, 2020 16:16
-
-
Save valkheim/dddb13b06b79a66bc2c6b32d3133a043 to your computer and use it in GitHub Desktop.
Extract and decode McAfee quarantine BUP files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Extract and decode McAfee quarantine BUP files | |
# See https://kc.mcafee.com/corporate/index?page=content&id=KB72755 | |
import sys | |
import zipfile | |
def decode(filename): | |
contents = bytes(open(filename, 'rb').read()) | |
decoded = bytes([byte ^ 0x6a for byte in contents]) | |
ext = 'txt' if filename == 'Details' else 'out' | |
decoded_filename = f'{filename}.{ext}' | |
with open(decoded_filename, 'wb') as fh: | |
fh.write(decoded) | |
print(f'> {decoded_filename}') | |
def extract_bup_files(filename): | |
names = [] | |
with zipfile.ZipFile(filename, 'r') as fh: | |
names = fh.namelist() | |
fh.extractall() | |
return names | |
def usage(): | |
print(f'{sys.argv[0]}: <filename.bup>', file=sys.stderr) | |
sys.exit(2) | |
if __name__ == '__main__': | |
if len(sys.argv) < 2: | |
usage() | |
extracted_files = extract_bup_files(sys.argv[1]) | |
for extracted_file in extracted_files: | |
decode(extracted_file) | |
sys.exit(0) |
Author
valkheim
commented
Dec 27, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment