Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#define try bool __HadError=false;
#define catch(x) ExitJmp:if(__HadError)
int main(int argc, char *argv[]) {
int memory[20];
import webbrowser
hash = input('HASH ')
webbrowser.open('https://md5hashing.net/hash/md5/{}'.format(hash))
@tezlas
tezlas / aicrck.py
Created July 28, 2017 11:18
A pAssword CRACKER
import hashlib
import sys
if sys.argv[1] == '1':
counter = 0
hashed = sys.argv[2]
file = sys.argv[3]
f = open(file, "r")
print 'ADDED HASH {}'.format(hashed)
print 'ADDED RULE {}'.format(file)
for line in f: