Skip to content

Instantly share code, notes, and snippets.

@valkheim
Created December 27, 2020 16:16
Show Gist options
  • Save valkheim/dddb13b06b79a66bc2c6b32d3133a043 to your computer and use it in GitHub Desktop.
Save valkheim/dddb13b06b79a66bc2c6b32d3133a043 to your computer and use it in GitHub Desktop.
Extract and decode McAfee quarantine BUP files
#!/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)
@valkheim
Copy link
Author

~/workspace/debup ./debup.py quarantine.bup
> Details.txt
> File_0.out

~/workspace/debup file Details.txt
Details.txt: ASCII text

~/workspace/debup file File_0.out
File_0.out: MS-DOS executable PE32 executable (GUI) Intel 80386, for MS Windows

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment