Just a Guy trying to be top 1%
the kind of person crazy enough to BELIEVE. no judgment if you do too.
- reverse engineering → decompile, analyze, understand
- firmware hacking → android, bootloaders, partitions—it all falls apart eventually
- ctf grinding → crackmes, hackthebox, just for the sake of it
MTK-SuperBuilder — android partition tool
build and unpack android dynamic partition images. mediatek devices mostly. the kind of tool you need when you want to actually understand your phone's firmware.
why it exists: dynamic partitions are a mess. this makes it slightly less of a mess.
android | firmware | partition-manipulation | mediatek | python
Realme C55 Root Guide — technical documentation
deep dive into bootloader unlocking, avb verification, recovery flashing. basically "how to completely own your phone and why it's harder than it should be."
why it exists: because detailed technical documentation on this stuff is hard to find, and i learned it the hard way.
android-rooting | bootloader | avb | firmware-analysis | mediatek
Reverse Engineering Writeups — ctf solutions & crackmes
hackthebox, tryhackme, random crackmes. solutions to problems. my notes on how i broke things open.
why it exists: documenting the process helps me learn. maybe it helps you too.
reverse-engineering | binary-analysis | ctf | ghidra | radare2 | malware-analysis
| tool | what i use it for |
|---|---|
| Ghidra | decompilation, when you need to actually understand code |
| Radare2 | lightweight analysis, scripting automation |
| GDB | debugging, dynamic analysis, watching things execute |
| x64dbg | windows reversing, when you have to go there |
| Python | everything else. tools, scripts, automation |
| Assembly | when you're reading the real stuff |
basically: the lower the level, the more interesting it gets.
— Against-All-Odds-07