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

Kernel Local Privilege Escalation "Dirty COW", CVE-2016-5195레이스 컨디션의 한 케이스 int main(){ struct stat st; char content[20]; char *new_content = "New Content"; void *map; int f = open("./zzz", O_RDWR) fstat(f, &st); map = mmap(NULL, st.size, PROT_READ | PROT_WRITE, MAP_SHARED, f, 0); // read 10 bytes memcpy( (void*)content, map, 10 ); printf("read: %s\n", co..
운영체제보안
2024. 12. 6. 20:58