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 | 31 |
Tags
- C언어
- HTML
- CSS
- 숙명여자대학교 정보보안 동아리
- 생활코딩
- SWEA
- XSS Game
- 드림핵
- BOJ
- hackctf
- Javascript
- Python
- 숙명여자대학교 정보보안동아리
- PHP 웹페이지 만들기
- BOJ Python
- 백준
- c
- 자료구조 복습
- Sookmyung Information Security Study
- WarGame
- 풀이
- 머신러닝
- siss
- 파이썬
- lob
- c++
- hackerrank
- 기계학습
- The Loard of BOF
- 웹페이지 만들기
Archives
- Today
- Total
목록lab04 (1)
혜랑's STORY
[HITCON-Training] Lab04 ret2lib
checksec을 통해 보호기법 확인하기 32bit 파일이고, Partial RELRO와 NX가 적용되어 있다. RET 변조를 통해 문제를 해결할 수 있을 것 같다. ret2lic 코드 살펴보기 #include void See_something(unsigned int addr){ int *address ; address = (int *)addr ; printf("The content of the address : %p\n",*address); }; void Print_message(char *mesg){ char buf[48]; strcpy(buf,mesg); printf("Your message is : %s",buf); } int main(){ char address[10] ; char message..
카테고리 없음
2021. 5. 14. 15:38