Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

수호의 메모장

code2 [KUCC 정뾰 세션 과제] 본문

Security/Reverse Engineering

code2 [KUCC 정뾰 세션 과제]

수호-_- 2023. 10. 10. 20:50

 

#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