일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 메소드
- 배열
- htmlspecialchars
- 백준 파이썬
- xss game 풀이
- python
- jQuery
- 함수
- window
- 백준 알고리즘
- 자바스크립트
- property
- lord of sql injection
- element 조회
- 김성엽 대표님
- 조건문
- 객체
- IF문
- burp suite
- sql injection
- object
- xss game
- blind sql injection
- suninatas 풀이
- document
- github
- 파이썬
- 포인터
- Pwndbg
- 사칙연산
Archives
- Today
- Total
목록pwnable random writeup (1)
power-girl0-0
[pwnable] random 풀이
안녕하세용(. ❛ ᴗ ❛.) 1. 문제 바이너리 파일과 c코드가 주어진다. 아래는 c코드이다. #include int main(){ unsigned int random; random = rand();// random value! unsigned int key=0; scanf("%d", &key); if( (key ^ random) == 0xdeadbeef ){ printf("Good!\n"); system("/bin/cat flag"); return 0; } printf("Wrong, maybe you should try 2^32 cases.\n"); return 0; } 2. 풀이 문제 코드를 확인해보면, 랜덤함수인 rand( )를 사용하는데 난수값을 설정하지 않았다. 이는 프로그램이 실행될 때마다 랜..
War game/pwnable.kr
2022. 2. 13. 02:19