Skip to content

Instantly share code, notes, and snippets.

View veygax's full-sized avatar

VeygaX veygax

View GitHub Profile
@veygax
veygax / jitbit-keygen.py
Created March 27, 2025 19:45
JitBit Macro Recorder keygen
import base64
import hashlib
from datetime import datetime
from Crypto.PublicKey import DSA
from Crypto.Signature import DSS
from Crypto.Hash import SHA1
USERNAME = "VeygaX"
KEY_SIZE = 512
@veygax
veygax / applyhexpatches.py
Created February 17, 2025 13:13
Python scripts I made for generating and applying custom hex patches.
#!/usr/bin/env python3
import sys
import json
import os
from pathlib import Path
import argparse
def apply_hex_patches(patches_file, target_file, output_file=None):
with open(patches_file, 'r') as f:
patch_data = json.load(f)