Skip to content

Instantly share code, notes, and snippets.

View veygax's full-sized avatar

veygax veygax

View GitHub Profile
@veygax
veygax / extract_proto.py
Last active November 20, 2025 15:05
simple protobuf extractor for Java files.
#!/usr/bin/env python3
# Java Protobuf Extractor
# Copyright (c) 2025 [email protected]
# SPDX-License-Identifier: MIT
import re
import sys
from pathlib import Path
from collections import defaultdict
@veygax
veygax / testflightDiscordWebhook.js
Created August 14, 2025 16:27
discord testflight watcher
const axios = require('axios');
const cheerio = require('cheerio');
const fs = require('fs').promises;
const DISCORD_WEBHOOK_URL = 'https://discord.com/api/webhooks/';
const TESTFLIGHT_IDS = [
'pLmKZJKw', // tiktok
'An0RiOFF' // cash app
];
@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