Skip to content

Instantly share code, notes, and snippets.

View Lanjelin's full-sized avatar
💭
Pondering upon world domination

Lanjelin

💭
Pondering upon world domination
View GitHub Profile
@Lanjelin
Lanjelin / MultiLauncher.au3
Created January 9, 2017 11:30
Launcher for using multiple World of Warcraft private servers.
#NoTrayIcon
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
#include <file.au3>
#include <MsgBoxConstants.au3>
Opt("GUIOnEventMode", 1)
MainGUI()
@Lanjelin
Lanjelin / checkWallet.py
Last active March 15, 2019 08:13
How to steal Bitcoin from Brainwallets.
import urllib2, hashlib, argparse, sys, time, ast
from pycoin import ecdsa, encoding
parser = argparse.ArgumentParser(description='How to steal Bitcoin from Brainwallets')
parser.add_argument('--s', metavar='\"string\"', help='Check a string.', default=False)
parser.add_argument('--f', metavar='<file>', help='Process a wordlist.', default=False)
parser.add_argument('--l', metavar='line', help='Line in file to start at.', default=False)
args = parser.parse_args()
def findKeys(toHash):