수호의 메모장
code2 [KUCC 정뾰 세션 과제] 본문
#include <stdio.h>
int main() {
int input = 0; //mov dword ptr [ebp-4], 0
printf("This is Password Gussing Problem>>"); //0x804a008
scanf("%d", &input); //0x47006425
if (input == "0x113")
printf("Good Job!!"); //0x804a02f
else
printf("Sorry... Try Again.. :("); //0x804a03a
return 0;
}
psuedocode
'Security > Reverse Engineering' 카테고리의 다른 글
[dreamhack, rev] Permpkin writeup (2) | 2023.11.20 |
---|---|
Easy_ELF [KUCC 정뾰 과제] (0) | 2023.10.10 |
Let's break 010Editor's License Authentication! (0) | 2023.09.20 |
NtQuerySystemInformation API Hooking을 통한 Usermode Process Hiding (0) | 2022.10.11 |