Skip to content

Instantly share code, notes, and snippets.

View Ap0dexMe0's full-sized avatar

Ap0dex Ap0dexMe0

View GitHub Profile
@Ap0dexMe0
Ap0dexMe0 / augment_code.js
Created August 24, 2025 06:15
Augment Code Automated Registration
// ==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
@Ap0dexMe0
Ap0dexMe0 / remote_dll.py
Created September 22, 2025 00:04
Remote DLL Injection
#!/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
@Ap0dexMe0
Ap0dexMe0 / devtool-webapps.js
Created October 28, 2025 02:29
Tampermonkey script specifically designed to bypass this anti-inspect protection
// ==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==
@Ap0dexMe0
Ap0dexMe0 / discord-quest.js
Last active March 17, 2026 00:31
Automation complete recent Discord Quest
(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;
@Ap0dexMe0
Ap0dexMe0 / tli_dumper.py
Created June 4, 2026 05:47
Loewe TLI Dumper
#!/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:
@Ap0dexMe0
Ap0dexMe0 / bgluares_decrypt.py
Last active June 10, 2026 18:48
Mega888 bgluares Decryptor
#!/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
@Ap0dexMe0
Ap0dexMe0 / remote.py
Created July 4, 2026 18:19
Remote SSH Manager (Upload/Download)
import os
import paramiko
HOST = ""
PORT = 22
USERNAME = ""
PASSWORD = ""
def upload(local_path, remote_path):
if remote_path.endswith("/"):
@Ap0dexMe0
Ap0dexMe0 / 429_bypass.js
Last active July 16, 2026 19:10
Tampermonkey script to bypass Rate limiting requests
// ==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