Skip to content

Instantly share code, notes, and snippets.

View J-Priebe's full-sized avatar

James Priebe J-Priebe

  • GTA, Ontario
View GitHub Profile
@lgommans
lgommans / rainbowtable.py
Created October 24, 2017 18:45
A toy rainbow table script
#!/usr/bin/env python3
import sys
from hashlib import md5
from base64 import b64encode
from binascii import hexlify, unhexlify
from time import time
def reduction_function(hash, max_password_length):