Skip to content

Instantly share code, notes, and snippets.

View tonzsm's full-sized avatar

T0NZ tonzsm

  • Thailand
View GitHub Profile
@un4ckn0wl3z
un4ckn0wl3z / BEST MCP SERVERS FOR RE
Last active July 1, 2026 08:37
BEST MCP SERVERS FOR RE
BEST MCP SERVERS FOR RE (SO FAR):
https://github.com/mrexodia/ida-pro-mcp
https://github.com/LaurieWired/GhidraMCP
https://github.com/Wasdubya/x64dbgMCP
https://github.com/svnscha/mcp-windbg
https://github.com/miscusi-peek/cheatengine-mcp-bridge
https://github.com/0xhackerfren/frida-game-hacking-mcp
https://github.com/0xhackerfren/Pcap-Analysis-MCP
https://github.com/dnakov/frida-mcp

Since the original creator aamiaa does not want new features or improvements added to their code, I created this gist with some quality-of-life improvements instead.

My version still fully respects the Discord API and does not bypass or abuse it.


Patch Notes

Patch 0.0

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active September 18, 2026 08:32
Complete Recent Discord Quest

Caution

As of August 26th 2026, Discord has started suspending quest access of people caught automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you WILL get flagged by doing so.

Complete Recent Discord Quest

using System;
using System.IO;
namespace MpressExtractor
{
internal class @_
{
private unsafe static int lzmat(byte[] pOs, byte[] pIs, int cI)
{
int num2;
@BadMagic100
BadMagic100 / i2cpp_ghidra.md
Last active September 7, 2026 00:50
Instructions to get a useful decompilation out of an il2cpp game. Or, "I spent hours to trial and error so hopefully you won't have to"

Decompiling IL2CPP Games with Il2CppDumper and Ghidra

This guide will walk through how to decompile/reverse engineer IL2CPP games for modding usage.

Note: expect this entire process to take upwards of an hour. Have something ready to do on the side while waiting for processing to finish.

Prerequisites

  1. Download Il2CppDumper
@tingplenting
tingplenting / ffmpeg_tuts.md
Last active September 2, 2025 15:37
ffmpeg cli for youtube

Extract audio from a YouTube video file

ffmpeg -i INPUT.mp4 -ab 256k OUTPUT.mp3

Cut 3s length

ffmpeg -y -ss 00:00:03 -i INPUT.mp4 -codec copy OUTPUT.mp4
@Oranzh
Oranzh / AES-256 encryption and decryption in PHP and C#.md
Created March 24, 2018 04:19
AES-256 encryption and decryption in PHP and C#

AES-256 encryption and decryption in PHP and C#

Update: There is a more secure version available. Details

PHP

<?php

$plaintext = 'My secret message 1234';