tech, life, reversing and random stuff
LYADI - Let Your Ai Do It
Let Your AI Do It
An MCP (Model Context Protocol) Server specifically designed to help with reverse engineering tasks, majorly focused on Android side.
This guide walks you through setting up and using the MCP server on Termux for Android to assist with reverse engineering tasks.
Identifying `ssl_verify_peer_cert` in Android Flutter Binaries
Ok so, here we go again…
How to Use PineHook+
Overriding Default Values of Android Constructor Parameters at Runtime
Ever found yourself needing to override default values within an Android class constructor without modifying the original codebase? Here, we’ll explore a solution using two powerful tools: Frida and Pine. These dynamic hooking libraries allow you to modify method parameters and manipulate their values at runtime, making testing, customization, and reverse engineering a breeze.
🛠️ How to Add Toast & Dialogue Box to Flutter Apps via Smali 📱
If you’re familiar with modifying Android apps, you know that smali can be an excellent tool for tinkering with app behavior. Today, we’re diving into adding Toast messages and Dialogue Boxes in Flutter apps by modifying the MainActivity.smali
file. You may have encountered crashes when trying to do this on your own, but don’t worry — I’ll guide you through the correct way to do it manually.