반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 포너블
- Windows Kernel Debug
- Msvcrt.dll
- 개발하기
- pwnable
- 윈도우 커널 디버깅
- HackCTF
- Windows Kernel
- packet capture
- 해킹
- vcruntime.dll
- apphelp.dll
- Network Byte Order
- windows kernel debugging
- arudino
- 네트워크 바이트 오더
- 윈도우 커널 드라이버
- ucrtbase.dll
- IAT Hooking
- pcap packet capture
- Windows
- 바이트 오더
- C언어 패킷캡쳐
- 시스템해킹
- 윈도우 커널
- 개발 환경 준비
- pcap packet
- vcruntime140.dll
- hacking
- Windows Kernel Driver
Archives
- Today
- Total
미친해커
[Memory Protection] 리눅스 메모리 보호 기법 (Linux Memory Protection Tech) 본문
Hacking/Memory Protection Tech
[Memory Protection] 리눅스 메모리 보호 기법 (Linux Memory Protection Tech)
미친해커 2021. 6. 17. 15:04반응형
리눅스 운영체제의 메모리 보호기법을 정리해볼 생각이다. (사실 나도 매번 까먹어서 정리가 필요함...)
리눅스에서 바이너리에 적용되어 있는 메모리 보호기법은 checksec을 이용하여 확인 할 수 있다.
checksec [Bianry File]
커맨드를 입력하면
RELRO: Partial RELRO
Stack: No canary found
NX: NX disabled
PIE: No PIE (0x8048000)
이렇게 현재 바이너리에 적용되어 있는 메모리 보호기법을 볼 수 있다. 보호기법 별 자세한 설명은 다음 글부터 할 생각이다.
반응형
'Hacking > Memory Protection Tech' 카테고리의 다른 글
[Memory Protection] ASLR (Address Space Layout Randomization) (0) | 2021.07.19 |
---|---|
[Memory Protection] PIE (Position Independent Executable) (0) | 2021.06.27 |
[Memory Protection] NX Bit (Never eXecute Bit) (0) | 2021.06.20 |
Comments