일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Multiplay
- gas
- Security
- Race condition
- ability task
- DSP
- MLFQ
- gravity direction
- unity
- stride
- 유스케이스
- gameplay ability system
- Unreal Engine
- 게임개발
- Delegate
- 유니티
- CTF
- dirty cow
- gameplay effect
- Replication
- Aegis
- photon fusion2
- animation
- map design
- 언리얼엔진
- MAC
- 메카님
- 언리얼 엔진
- ret2libc
- 게임 개발
Archives
- Today
- Total
목록chaining function calls (1)
Replicated

#include #include #include void a_fun(void){ system("/bin/sh");}void b_fun(void){ printf("I am in b_fun()\n");}void c_fun(void){ printf("I am in c_fun()\n");}int vul_func(char *str){ char buff[10]; strcpy(buff, str); return 1;}int main(int argc, char **argv){ char str[100]; vul_func(argv[1]); printf("returned properly\n"); return 1;}objdump -d test | moresub로 14 빼니까..
운영체제보안
2024. 12. 5. 22:36