๋ฌธ์ ํด์
/ ํ์ด์ง
@app.route("/")
def index():
session_id = request.cookies.get('sessionid', None)
try:
username = session_storage[session_id]
except KeyError:
return render_template('index.html', text='please login')
return render_template('index.html', text=f'Hello {username}, {"flag is " + FLAG if username == "admin" else "you are not an admin"}')
์ฟ ํค์์ session id๋ฅผ ํ์ธํ๊ณ ๊ทธ ๊ฐ์ ๋ฐ๋ผ ์๋์ ๊ฐ์ด ์ถ๋ ฅํ๋ค. None์ธ๊ฒฝ์ฐ → “please login” guest์ธ ๊ฒฝ์ฐ → “you are not an admin” admin์ธ ๊ฒฝ์ฐ → "flag is " + FLAG
/login ํ์ด์ง
users = {
'guest': 'guest',
'admin': FLAG
}
@app.route('/login', methods=['GET', 'POST'])
def login():
if request.method == 'GET':
return render_template('login.html')
elif request.method == 'POST':
username = request.form.get('username')
password = request.form.get('password')
try:
pw = users[username]
except:
return '<script>alert("not found user");history.go(-1);</script>'
if pw == password:
resp = make_response(redirect(url_for('index')) )
session_id = os.urandom(8).hex()
session_storage[session_id] = username
resp.set_cookie('sessionid', session_id)
return resp
return '<script>alert("wrong password");history.go(-1);</script>'
์ผ๋ฐ์ ์ธ ๋ก๊ทธ์ธ ํ์ด์ง์ด๋ค. ๋ก๊ทธ์ธ์ ์ฑ๊ณตํ๋ ๊ฒฝ์ฐ, session_id๋ฅผ ์ฟ ํค์ ์ ์ฅํ๋ค.
/flag ํ์ด์ง
@app.route("/flag", methods=["GET", "POST"])
def flag():
if request.method == "GET":
return render_template("flag.html")
elif request.method == "POST":
param = request.form.get("param", "")
session_id = os.urandom(16).hex()
session_storage[session_id] = 'admin'
if not check_csrf(param, {"name":"sessionid", "value": session_id}):
return '<script>alert("wrong??");history.go(-1);</script>'
return '<script>alert("good");history.go(-1);</script>'
GET /flag ์ธ ๊ฒฝ์ฐ ์๋ฒ ๋ก์ปฌ ํธ์คํธ ํ๊ฒฝ์์ /vuln ํ์ด์ง์ param์ ๋ฃ์ด ์ ๋ฌํ ์ ์๋๋ก ์ ๋ ฅ์ฐฝ์ด ๋ณด์ธ๋ค.
POST /flag์ธ ๊ฒฝ์ฐ ์ ๋ ฅ์ฐฝ์ ‘์ ์ถ’ํ์ ๋ ๋์ํ๋ ํจ์์ด๋ค. ‘admin’์ ํด๋นํ๋ session_id(๋จ๋)๊ฐ์ด ๋ง๋ค์ด์ ธ {session_id, ‘admin’}์ผ๋ก session_storage์ ์ ์ฅ๋๋ค. ๋, check_csrf ์์ ์ฟ ํค ๊ฐ์ session_id๋ฅผ ์ ์ฅํ๋ค.
/change_password API
@app.route("/change_password")
def change_password():
pw = request.args.get("pw", "")
session_id = request.cookies.get('sessionid', None)
try:
username = session_storage[session_id]
except KeyError:
return render_template('index.html', text='please login')
users[username] = pw
return 'Done'
ํจ์๊ฐ ํธ์ถ ๋๋ฉด, session_storeage์์ session_id๋ฅผ ํตํด username์ ํ์ธํ๋ค. ํ๋ผ๋ฏธํฐ๋ก ๋ฐ์ pw ๊ฐ์ ์ฌ์ฉํด์ username์ ํด๋นํ๋ user์ ๋น๋ฐ๋ฒํธ๋ฅผ ๋ณ๊ฒฝํ๋ค.
ํ์ด ๋ฐฉ๋ฒ
๋๋ต์ ์ผ๋ก ๋น๋ฐ๋ฒํธ๋ฅผ ๋ณ๊ฒฝํด์ admin์ผ๋ก ๋ก๊ทธ์ธํด FLAG๋ฅผ ํ์ธํ๋ฉด ๋ ๊ฒ ๊ฐ๋ค.
- POST /flag ์์ฒญ์ผ๋ก ํตํด, session_storage์ {session_id, ‘admin’}๋ฅผ ์ ์ฅํ๋ค. ์ฟ ํค์ {”session_id”, session_id}๋ฅผ ์ ์ฅํ๋ค.
- /change_password ํธ์ถ์ ํตํด, ์ฟ ํค์์ session_id ์กฐํํ๋ค. ์กฐํํ session_id๋ก session_storage์์ ‘admin’์ ๊ฐ์ ธ์ user[’admin’]์ ์๋ก์ด pw๋ฅผ ์ ๋ฐ์ดํธ ํ๋ค.
<img src="/change_password?pw=admin"/>
3. /login ํ์ด์ง์์ admin ๊ณ์ ์ผ๋ก ๋ก๊ทธ์ธํ ํ, / ํ์ด์ง์์ FLAG๋ฅผ ํ์ธํ๋ค.
'๐ดโโ ๏ธ CTF ๐ดโโ ๏ธ > โ๏ธ ์น โ๏ธ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Dream Hack - Web] sql injection bypass WAF (0) | 2024.08.14 |
---|---|
[Dream Hack - Web] error based sql injection (0) | 2024.08.13 |
[Dream Hack - Web] csrf-1 (0) | 2024.08.07 |
[Dream Hack - Web] xss-2 (0) | 2024.08.02 |
[Dream Hack - Web] xss-1 (0) | 2024.08.02 |