Skip to content

Instantly share code, notes, and snippets.

View WitherOrNot's full-sized avatar
🤠
yeehaw

WitherOrNot

🤠
yeehaw
View GitHub Profile
@WitherOrNot
WitherOrNot / wsrv_x64_lh_act.ipynb
Last active April 14, 2024 19:55
Keygen for x64 winxp/server 2003/longhorn
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@WitherOrNot
WitherOrNot / parse_dpcdll.py
Last active October 15, 2023 04:12
Parse DPCDLL.DLL to get PIDs for key generation (x86/x64 Windows XP and derivatives only)
from glob import glob
from struct import unpack
import json
import sys
def readint(f):
return unpack("<I", f.read(4))[0]
if __name__ == "__main__":
if len(sys.argv) < 3:
@WitherOrNot
WitherOrNot / winxp_act.ipynb
Created June 2, 2023 07:25
All the code you need to activate Windows XP w/o WPA bypasses
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@WitherOrNot
WitherOrNot / switch_su_dl.py
Created May 16, 2023 18:20
Switch Firmware Downloader. Needs hactool in same directory, decrypted PRODINFO.bin and prod.keys in "keys" directory
from Crypto.PublicKey import RSA
from anynet import tls
from struct import unpack, calcsize
from binascii import hexlify, unhexlify
from requests import request
from os import makedirs, remove
from subprocess import run, PIPE
from os.path import basename, exists
from shutil import rmtree
from glob import glob
@WitherOrNot
WitherOrNot / mclauncher_offline.py
Created March 22, 2023 10:03
Offline minecraft downloader/launcher
#!/usr/bin/env python3
import requests
import platform
import sys
import os
import lzma
import shlex
import json
from datetime import datetime
@WitherOrNot
WitherOrNot / illager.py
Created August 7, 2022 02:38
archive mc marketplace. needs entitytoken in token.txt and device id in script, can be gotten from running fiddler on mcbedrock w/ owner acct logged in
from base64 import b64decode, b64encode
from binascii import hexlify
from requests import post, get
from json import loads, dumps
from Crypto.Cipher import AES
from os import makedirs
from os.path import join, exists, dirname
from zipfile import ZipFile
from io import BytesIO
@WitherOrNot
WitherOrNot / creativemode.py
Last active May 10, 2023 21:12
"special" minecraft bedrock launcher
from subprocess import run, Popen, PIPE
from psutil import Process
from time import sleep
from tempfile import NamedTemporaryFile
import sys
import re
import ctypes
enable_reg = br"""Windows Registry Editor Version 5.00
@WitherOrNot
WitherOrNot / nice_boat.py
Created January 20, 2022 23:31
nice boat
from struct import unpack, calcsize
from zlib import decompress
from io import BytesIO
from os import makedirs, scandir
from os.path import dirname, join
PACKS_PATH = r"u either know it or u dont"
def readint(f, type="I"):
return unpack(f"<{type}", f.read(calcsize(type)))[0]
@WitherOrNot
WitherOrNot / wiiu_keygen.py
Created January 18, 2022 23:12
Generate titlekeys for WiiU games
from hashlib import pbkdf2_hmac
from binascii import hexlify, unhexlify
from Crypto.Hash import MD5
import sys
SECRET = b'\xfd\x04\x01\x05\x06\x0b\x11\x1c-I'
def hexify(s):
return hexlify(s).decode("utf-8")
@WitherOrNot
WitherOrNot / nfs2iso.py
Last active May 14, 2023 20:11
Convert WiiU Wii VC games into playable Wii ISOs
#!/usr/bin/env python3
from struct import pack, unpack, calcsize
from Crypto.Cipher import AES
from Crypto.Hash import SHA1
from binascii import hexlify, unhexlify
from os.path import join, exists
from os import makedirs, remove
import sys