This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |