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
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'tpope/vim-fugitive' | |
Bundle 'Lokaltog/vim-easymotion' | |
Bundle 'Valloric/YouCompleteMe' |
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 string | |
# Algorithm for SMBC #2874 - the "fouriest" transform. | |
# Support bases 2-36. | |
BASE_LIST = string.digits + string.letters | |
def encode(integer, base): | |
# Stolen off the internet from somewhere, | |
# almost certainly guaranteed to be buggy. | |
base_list = BASE_LIST[:base] |
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
# Copyright 2012 Matt Redmond | |
__author__ = "[email protected]" | |
import mechanize | |
from Queue import Queue, Empty | |
from threading import Thread | |
import re | |
queue = Queue() | |
break_regex = re.compile("<br>", re.IGNORECASE) |
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 sys | |
sys.path.append("./python-keepass/python") | |
from keepass import kpdb | |
byte_strings = [hex(x)[2:].rjust(2, '0').lower() for x in range(255)] | |
pass_template = "%s3b140a6ec5%sec" | |
num_tried = 0 | |
for s1 in byte_strings: | |
for s2 in byte_strings: | |
tmp_pw = pass_template % (s1, s2) | |
num_tried += 1 |
NewerOlder