300x250
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
- Harriso Ruzo
- AFT
- 아이폰탈옥
- ss-property
- rooting
- ios
- iphone
- Bell-lapadula
- 접근제어
- freenet
- Mac
- 버퍼오퍼블로우
- Biba model
- Chinese Wall
- 버전낮추기
- Clark-wilson model
- HRU
- 포렌식
- Permission modifiy
- 더티카우공격
- 탈옥
- *-propoerty
- 클라크윌슨 모델
- P2P
- integrety
- Information flow security model
- checkra1n
- Covert Channels vs Side Channels
- BLP
- NX-bit 우회
Archives
- Today
- Total
목록버퍼오퍼블로우 (1)
4n6x4t

안녕하세요 매일 글을 쓰려고하는데 그게 쉽지 않네요 ㅎㅎ 오늘은 Stack Buffer Overflow에 대해서 알아보겠습니다. 그 전에, 함수가 실행될 때 메모리에 어떻게 저장되는지 알아보겠습니다. 아래는 C코드입니다. int x = 100; int main() { //data stored on stack int a=2; //지역변수, stack 안에 저장 float b=2.5; static int y; //함수 안이어도 전역변수, BSS or DATA 영역에 저장 // allocate memory on heap int *ptr = (int *) malloc(2*sizeof(int)); //values 5 and 6 stored on heap ptr[0]=5; ptr[1]=6; //deallocate ..
Study/System Security
2023. 4. 26. 16:55