일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- OSR
- 난독화
- on stack replacement
- so inject
- pthread
- uftrace
- initial-exec
- pinpoint
- tracing
- v8 tracing
- LLVM Obfuscator
- thread local storage
- Obfuscator
- custom packer
- TLS
- LLVM 난독화
- linux debugging
- anti debugging
- android inject
- linux thread
- Injection
- Linux packer
- tracerpid
- 안티디버깅
- v8 optimizing
- Linux custom packer
- Android
- LLVM
- on-stack replacement
- apm
Archives
- Today
- Total
목록linux thread (1)
Why should I know this?
Linux의 thread local storage 파헤치기
Thread Local Storage 파헤치기 0. 개요Thread Local Storage는 Multi-Thread 프로그램을 작성하는데 거의 필수로 사용되는 기능이다.Linux에서의 Thread Local Storage에 대하 자세히 다뤄보고자 한다. 이 글에서 다루는 모든 소스코드와 예제는 github 저장소에 존재한다. https://github.com/ParkHanbum/study_tls.git 0-0. 배경 -. 프로그래밍 공학시간에 배웠듯, 프로그래밍 언어에서 지역변수는 Stack에, 전역변수는 Data 영역에 보관된다.-. 모든 프로세스에는 아키텍처에 가용한 최대한의 메모리가 가상 메모리로 제공된다. 이것을 Flat 혹은 Linear 메모리 모델이라고 부른다. 0-1. Thread 란?먼저..
Knowledge/Linux
2019. 1. 17. 16:37