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
| // ==UserScript== | |
| // @name AugmentCode Auto Register | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0.0 | |
| // @description AugmentCode Auto Registration Script | |
| // @author AugmentCode-AutoRegister-Userscript | |
| // @match https://*.augmentcode.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=augmentcode.com | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_setValue |
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 | |
| # encoding: utf-8 | |
| """ | |
| rdll.py (Python3 port) | |
| Original by Charles (2012) - WTFPL v2 | |
| Recode By Pari Malam (2025) | |
| """ | |
| import os | |
| import sys |
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
| // ==UserScript== | |
| // @name Bypass Return of Warpath Protection | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.3 | |
| // @description Bypass anti-inspect and devtools detection on returnofwarpath.com | |
| // @author Ap0dexMe0 | |
| // @match https://returnofwarpath.com/* | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== |
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
| (function() { | |
| 'use strict'; | |
| class DiscordAutoQuest { | |
| constructor() { | |
| this.ELECTRON_USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Discord/1.0.0 Chrome/120.0.0.0 Electron/28.0.0 Safari/537.36'; | |
| this.HEARTBEAT_INTERVAL = 30000; | |
| this.VIDEO_INTERVAL = 3000; | |
| this.WEBPACK_MAX_ATTEMPTS = 100; | |
| this.WEBPACK_CHECK_INTERVAL = 100; |
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 | |
| """ | |
| Loewe TLI Firmware Dumper / Extractor | |
| ====================================== | |
| Reverse-engineered format analysis and extraction tool for Loewe .tli firmware | |
| update files, commonly found at https://cdn.loewe.tv/software_new/ | |
| TLI File Format: | |
| The .tli format consists of two parts: |
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 | |
| """ | |
| Mega888 bgluares Decryptor | |
| Decrypts XXTEA-encrypted LuaJIT bytecode files with bgluares header. | |
| Encryption Key: cy4ty9cd | |
| Algorithm: XXTEA | |
| """ | |
| import struct, sys, os |
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 os | |
| import paramiko | |
| HOST = "" | |
| PORT = 22 | |
| USERNAME = "" | |
| PASSWORD = "" | |
| def upload(local_path, remote_path): | |
| if remote_path.endswith("/"): |
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
| // ==UserScript== | |
| // @name Auto Proxy with ProxyScrape (Multi-Protocol) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 3.3 | |
| // @description Fetches proxies from ProxyScrape, tests HTTP/HTTPS/SOCKS4/SOCKS5, uses first one that masks your IP. (Unlimited proxy testing) | |
| // @author YourName | |
| // @match *://*/* | |
| // @grant GM_xmlhttpRequest | |
| // @grant unsafeWindow | |
| // @run-at document-start |
OlderNewer