Skip to content

Instantly share code, notes, and snippets.

View vgf89's full-sized avatar

HoloPengin vgf89

  • Japan
View GitHub Profile
@vgf89
vgf89 / pzz_extractor.py
Last active March 25, 2018 22:18
Added support for filetype 0x04, made extraction more restrictive so it only extract files it can find script in
#!/usr/bin/env python3
import os
import re
def main():
path = "pzz_files"
os.chdir(path)
directory = os.fsencode(".")
for file in os.listdir(directory):
filename = os.fsdecode(file)