반응형
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
- Import/Export Wordpress Users
- Python
- QR코드
- union sql injection
- 네트워크
- Stored Cross-Site Scripting
- 취약점 진단
- ctf-d
- 보고서
- xcz
- forensic
- reversing
- 포렌식
- DOS
- multimedia
- strcmp 취약점
- Whitespace Programming
- zap 파일
- steghide
- CVE
- scapy
- 암호학
- volvolatility
- wargame.kr
- zip 파일 구조
- LifterLMS
- 스테가노그래피
- 주요정보통신기반시설 기술적 취약점 분석 평가 상세 가이드
- Wordpress
- CSV Injection
Archives
- Today
- Total
목록strcmp 취약점 (1)
광팔이 보안이야기

Start를 누르면 wargame.kr:8080/strcmp/ 사이트로 넘어가진다. strcmp 함수를 우회할 수 있으면 플래그를 얻습니다. 우회해야겠다... else if(isset($_POST['password'])){ sleep(1); // do not brute force! if (strcmp($_POST['password'], $password) == 0) { echo "Congratulations! Flag is " . auth_code("strcmp") .""; exit(); } else { echo "Wrong password.."; if 문을 보면 strcmp 함수가 있다. strcmp 함수는 첫 번째와 두 번째 값이 같을 때 0을 출력한다. 즉 $_POST['password'] 와 $p..
Wargame/Wargame.kr
2021. 2. 18. 17:46