This file contains hidden or 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
import re | |
import zlib | |
import argparse | |
from PIL import Image | |
def parse_args(): | |
parser = argparse.ArgumentParser(description='Decompress data using zlib') | |
parser.add_argument('pdf_file', help='The PDF file to analyze') | |
return parser.parse_args() |
This file contains hidden or 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 python3 | |
""" | |
Brute force commit hashes on GitHub projects. | |
Example usage: | |
brute_commit.py user/repo >> found_commits.txt | |
mkdir dump_dir; wget -c -i found_commits.txt -P dump_dir | |
trufflehog filesystem dump_dir | |
""" |
OlderNewer