HTB CTF 2026 Writeups
Writeup for some rev challenges in the event.
Overview
Better not get myself rusty so I participated in this year HTB together with my company team. Too bad work was so stressful I had to settle with 2 challenges.
Cinderbound
- Given file:
cinderbound.mpy
Warm up. Dump into bytecode with Micropython
|
|
We obtain the easily encrypted code and we can obtain the flag by doing the reverse rotation.
|
|
HTB{c1nd3rbound_v0w5}
Ringtrue
- Given file:
ringtrue
okay I really had fun with this one. It makes me remember my Introduction to AI class. The program required us to input 8 numbers. The code do something akin to a vector transformation and compare to static data ECHO_S, welp time for z3 to shine upon us once more. We just need to mimic the logic of what is done.
One of the issue I saw was how to dump the data from IDA with correct format. And this script might be useful for future dumping.
|
|
Now onto the solver using value obtained from the dumper.
|
|
HTB{h3y_s1gn3t_1_4m_y0ur_k1ng}