Geek Challenge 2024 Reverse Engineering Write-ups
Reverse Engineering Challenges
Week 1
Sign-in Challenge
The provided assembly file was decompiled into equivalent C code. The program reads a string, processes it by XORing even-indexed characters with 7 and subtracting 5 from odd-indexed ones, then compares the result with a target string.
#include <stdio.h>
#include <string.h>
ch ...
Publicado em 8-12 07:41