일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- window
- 백준 파이썬
- xss game 풀이
- 메소드
- github
- document
- IF문
- 배열
- burp suite
- 사칙연산
- 포인터
- element 조회
- 조건문
- 자바스크립트
- 김성엽 대표님
- property
- 백준 알고리즘
- xss game
- htmlspecialchars
- 파이썬
- 객체
- blind sql injection
- object
- suninatas 풀이
- sql injection
- 함수
- python
- jQuery
- lord of sql injection
- Pwndbg
Archives
- Today
- Total
목록pwnable bof (1)
power-girl0-0
[pwnable] bof 풀이
안녕하세요. 간결한 풀이입니다. (๑•̀ㅂ•́)و✧ 1. 문제 문제에 접속하면, 아래와 같이 코드와 바이너리를 다운로드 할 수 있는 링크가 주어진다. 코드는 아래와 같다. #include #include #include void func(int key){ char overflowme[32]; printf("overflow me : "); gets(overflowme); // smash me! if(key == 0xcafebabe){ system("/bin/sh"); } else{ printf("Nah..\n"); } } int main(int argc, char* argv[]){ func(0xdeadbeef); return 0; } 2. 풀이 func함수 코드를 살펴보면, key값이 0xcafebabe일..
War game/pwnable.kr
2022. 1. 20. 13:01