Skip to content

Instantly share code, notes, and snippets.

View filipnyquist's full-sized avatar

filipnyquist filipnyquist

View GitHub Profile
@echo off
echo Downloading and installing arg tester by opl...
powershell -command "& { (New-Object Net.WebClient).DownloadFile('https://github.com/opl-/winter-arg-tester/archive/master.zip', 'master.zip') }"
powershell -command "& { (New-Object Net.WebClient).DownloadFile('http://all-radio.se/7za.dll', '7za.dll') }"
powershell -command "& { (New-Object Net.WebClient).DownloadFile('http://all-radio.se/7zxa.dll', '7zxa.dll') }"
powershell -command "& { (New-Object Net.WebClient).DownloadFile('http://all-radio.se/7za.exe', '7za.exe') }"
7za.exe x master.zip
echo Installing node(portable)
powershell -command "& { (New-Object Net.WebClient).DownloadFile('http://nodejs.org/dist/latest/win-x86/node.exe', 'node.exe') }"
powershell -command "& { (New-Object Net.WebClient).DownloadFile('http://nodejs.org/dist/latest/win-x86/node.lib', 'node.lib') }"
@filipnyquist
filipnyquist / guess_for_app.py
Last active January 1, 2016 19:56 — forked from Dinnerbone/guess_for_app.py
Save all files (app list credit to xPaw). Run the solver with: `python guess_for_password.py xpaws_app_list.txt PASSWORD_TO_TRY` or `python guess_for_app.py APP_ID list_of_passwords_in_a_file.txt`
from twisted.internet import reactor, defer, threads
from twisted.logger import Logger, textFileLogObserver, globalLogPublisher
import time, sys, requests, random
log = Logger()
reactor.suggestThreadPoolSize(20)
fread=open("proxy.txt").readline().rstrip()
proxies = {'http' : fread}
def try_password(password, app, real):
try: