Skip to content

Instantly share code, notes, and snippets.

View WitherOrNot's full-sized avatar
🤠
yeehaw

WitherOrNot

🤠
yeehaw
View GitHub Profile
@thepwrtank18
thepwrtank18 / everykey.md
Last active July 29, 2023 13:21
Every Product Key That Can (as of now) Be Made

Every Product Key That Can (as of now) Be Made

This list gives every product key for every BINK ID (that we know the algorithm of) and Channel ID. Not every product key can be listed, but if you have a Microsoft product that doesn't use pidgenx (pre-Vista and Office 2010), at least one of these keys will work. If it does, tell so in the comments! That way, we can properly label what goes to which.

Note: If NONE of these keys work,

  • I want whatever software/drugs you're using that lets you test every one of these keys.
  • Tell me the product you're trying to use in the comments! You might have something important (ex: a BINK we don't know the algorithm of) and we need it to complete the collection.

What do the numbers mean, Jason?

BINK ID's are essentially the product identifier. 2A and 2B is Windows XP Home Edition, 50 and 51 is Halo: Combat Evolved, etc. These can overlap (because the geniuses at Microsoft decided to have them overlap), so the BINK doesn't really identify anything.

@Alee14
Alee14 / win-dism.md
Last active July 6, 2024 17:50
Installing Windows using CMD. (UEFI and BIOS Supported)

Installing Windows using CMD. (UEFI and BIOS Supported)

Guide created by Andrew Lee

Note that this guide does not go into detail, it's just providing the commands to install Windows.

Be cautions when doing this when dualbooting, please backup any existing data or you will lose them all.

Open CMD

First open CMD by pressing the following keys after booting into setup: Shift + F10

Creating Partition

#!/usr/bin/env python3
import struct
import sys
from Crypto.Hash import SHA1
stage2file = sys.argv[1]
outfile = sys.argv[2]
stage2 = bytearray(open(stage2file, "rb").read())
@MCJack123
MCJack123 / ipsw_keys.py
Last active December 1, 2023 22:46
Extract iOS firmware keys using on-device AES engine
#!/usr/bin/env python
from sys import argv, stdout
from os import system, remove, path
from urlparse import urlparse
import re
import dfu
import ssl
import math
import json
import getopt
@pmkay
pmkay / top-brew-packages.txt
Last active July 12, 2024 23:56 — forked from r5v9/top-brew-packages.txt
Top homebrew packages
node: Platform built on V8 to build network applications
git: Distributed revision control system
wget: Internet file retriever
yarn: JavaScript package manager
python3: Interpreted, interactive, object-oriented programming language
coreutils: GNU File, Shell, and Text utilities
pkg-config: Manage compile and link flags for libraries
chromedriver: Tool for automated testing of webapps across many browsers
awscli: Official Amazon AWS command-line interface
automake: Tool for generating GNU Standards-compliant Makefiles
@mutin-sa
mutin-sa / Top_Public_Time_Servers.md
Last active July 17, 2024 01:35
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@steven2358
steven2358 / ffmpeg.md
Last active July 13, 2024 20:20
FFmpeg cheat sheet
@Twolk
Twolk / kms
Created October 27, 2017 22:27 — forked from CHEF-KOCH/KMS_office.cmd
KMS server Windows
Online kms host address:
--------
kms.digiboy.ir
54.223.212.31
kms.cnlic.com
kms.chinancce.com
kms.ddns.net
franklv.ddns.net
k.zpale.com
m.zpale.com
@adamar
adamar / client.py
Created April 6, 2017 06:37
Simple Websocket Client & Server Example (Python)
import websocket
import thread
import time
import sys
port = sys.argv[1]
def on_message(ws, message):
@adrianlzt
adrianlzt / aes_cryptojs_pycrypto.js
Last active March 8, 2024 05:02
Interoperable CryptoJS (defaults) <-> PyCrypto
/*
* CryptoJS by default:
* - uses CBC mode
* - pkcs7 for padding
* - evpKDF to extract key
* - part of the key is used as IV
* - before converting to base64 it makes "Salt__"+salt+encrypted_text
*/
var CryptoJS = require('crypto-js');