https://dreamhack.io/wargame/challenges/37/
๋ฌธ์
File Download ์ทจ์ฝ์ ์ด ์กด์ฌํ๋ ์น ์๋น์ค์
๋๋ค.
flag.py๋ฅผ ๋ค์ด๋ก๋ ๋ฐ์ผ๋ฉด ํ๋๊ทธ๋ฅผ ํ๋ํ ์ ์์ต๋๋ค.
๋ฌธ์ ํ์ผ
#!/usr/bin/env python3
import os
import shutil
from flask import Flask, request, render_template, redirect
from flag import FLAG
APP = Flask(__name__)
UPLOAD_DIR = 'uploads'
@APP.route('/')
def index():
files = os.listdir(UPLOAD_DIR)
return render_template('index.html', files=files)
@APP.route('/upload', methods=['GET', 'POST'])
def upload_memo():
if request.method == 'POST':
filename = request.form.get('filename')
content = request.form.get('content').encode('utf-8')
if filename.find('..') != -1:
return render_template('upload_result.html', data='bad characters,,')
with open(f'{UPLOAD_DIR}/{filename}', 'wb') as f:
f.write(content)
return redirect('/')
return render_template('upload.html')
@APP.route('/read')
def read_memo():
error = False
data = b''
filename = request.args.get('name', '')
try:
with open(f'{UPLOAD_DIR}/{filename}', 'rb') as f:
data = f.read()
except (IsADirectoryError, FileNotFoundError):
error = True
return render_template('read.html',
filename=filename,
content=data.decode('utf-8'),
error=error)
if __name__ == '__main__':
if os.path.exists(UPLOAD_DIR):
shutil.rmtree(UPLOAD_DIR)
os.mkdir(UPLOAD_DIR)
APP.run(host='0.0.0.0', port=8000)
ํ์ด
์ฃผ์ด์ง ์ฝ๋๋ฅผ ๋ณด์ง ์๊ณ ๋ ํด๊ฒฐ์ด ๊ฐ๋ฅํ๋ค...
ํํ์ด์ง ๊ตฌ์ฑ๋ง ์ด์ง ๋ด๋ ๋จ์๋ฅผ ์ป์ ์ ์๋ค
ํ์ผ ์ ๋ชฉ๊ณผ ์ปจํ ์ธ ๋ฅผ ์ ๋ ฅํด์ ์ ๋ก๋ํ๋ฉด
ํํ๋ฉด์ ๋ด๊ฐ ์ ๋ก๋ํ ํ์ผ์ด ๋ํ๋๋ ํ์
๊ฐ ํ์ผ์ ํด๋ฆญํ๋ฉด
์ด๋ ๊ฒ ๋ด์ฉ์ ํ์ธ ํ ์ ์๋ค
๊ทผ๋ฐ URL์ ์ ์ดํด๋ณด๋ ๊ต์ฅํ ๋จ์ํ๋ค
read?name="ํ์ผ์ด๋ฆ" ์ ์ ๋ ฅํ๋ฉด ํด๋นํ๋ ํ์ผ์ ์ฝ์ ์ ์๊ฒ ๋ค.
๊ทธ๋ ๋ค๋ฉด ๋ฌธ์ ์์ ์ฝ์ผ๋ผํ flag.py๋ฅผ ์ฝ์ด๋ณด์
http://host3.dreamhack.games:16310/read?name=flag.py
์ญ์ uploads/ ํด๋์๋ ์กด์ฌํ์ง ์๋ ๋ฏ ํ๋ค
๋ฐ๋ก ์์๊ณ์ธต ํด๋์์ ์ฐพ์๋ณด์
http://host3.dreamhack.games:16310/read?name=../flag.py
์ฑ๊ณต!
'๐ Cyber Security > Web Hacking (์นํดํน)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[DreamHack] ๋๋ฆผํต ์นํดํน : Carve Party (0) | 2023.07.27 |
---|---|
[DreamHack] ๋๋ฆผํต ์นํดํน: web-ssrf (0) | 2023.07.17 |
[DreamHack] ๋๋ฆผํต ์นํดํน: command-injection-1 (0) | 2023.07.05 |
[DreamHack] ๋๋ฆผํต ์นํดํน: csrf-2 (0) | 2022.11.09 |
[DreamHack] ๋๋ฆผํต ์นํดํน: csrf-1 (0) | 2022.11.08 |