일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- os
- Replication
- listen server
- photon fusion2
- MAC
- 보안
- gameplay tag
- 게임개발
- 게임 개발
- map design
- Multiplay
- Unreal Engine
- local prediction
- attribute
- 언리얼 엔진
- gas
- nanite
- UI
- Aegis
- CTF
- 유니티
- stride
- network object pooling
- gameplay ability system
- ability task
- gameplay effect
- 언리얼엔진
- unity
- rpc
- animation
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