문제정보
쿠키와 세션으로 인증 상태를 관리하는 간단한 로그인 서비스입니다.
admin 계정으로 로그인에 성공하면 플래그를 획득할 수 있습니다.
플래그 형식은 DH{…} 입니다.
Keypoint
cookie & session
app.py
#!/usr/bin/python3
from flask import Flask, request, render_template, make_response, redirect, url_for
app = Flask(__name__)
try:
FLAG = open('./flag.txt', 'r').read()
except:
FLAG = '[**FLAG**]'
users = {
'guest': 'guest',
'user': 'user1234',
'admin': FLAG
}
# this is our session storage
session_storage = {
}
@app.route('/')
def index():
session_id = request.cookies.get('sessionid', None)
try:
# get username from session_storage
username = session_storage[session_id]
except KeyError:
return render_template('index.html')
return render_template('index.html', text=f'Hello {username}, {"flag is " + FLAG if username == "admin" else "you are not admin"}')
@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:
# you cannot know admin's pw
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(32).hex()
session_storage[session_id] = username
resp.set_cookie('sessionid', session_id)
return resp
return '<script>alert("wrong password");history.go(-1);</script>'
@app.route('/admin')
def admin():
# developer's note: review below commented code and uncomment it (TODO)
#session_id = request.cookies.get('sessionid', None)
#username = session_storage[session_id]
#if username != 'admin':
# return render_template('index.html')
return session_storage
if __name__ == '__main__':
import os
# create admin sessionid and save it to our storage
# and also you cannot reveal admin's sesseionid by brute forcing!!! haha
session_storage[os.urandom(32).hex()] = 'admin'
print(session_storage)
app.run(host='0.0.0.0', port=8000)
메인화면
1분안에 풀 수 있는 세션이 뭔지 알려주는 기본적인 문제이다.
총 2가지의 페이지가 존재하는데
1. / : 기본적인 index 페이지
2. /admin : 페이지
위의 코드에서 주석이 없었다면 힘들었겠지만, 주석이 달려있어 admin 검증이 들어가지 않는다.
아무튼 위 페이지로 이동하면 다음과 같은 화면이 보인다.
위는 계정별 'session_id'로 다음의 값을 통해 'username'을 바꿀 수 있다.
'admin'의 'session_id' 를 개발자도구를 통해 바꿔주면 FLAG를 확인할 수 있다.
FLAG
DH{8f3d86d1134c26fedf7c4c3ecd563aae3da98d5c}
'DreamHack > web' 카테고리의 다른 글
[wargame] devtools-sources (0) | 2023.07.17 |
---|---|
[wargame] csrf-2 (0) | 2023.07.17 |
[wargame] File Vulnerability Advanced for linux (0) | 2023.07.17 |
[wargame] Apache htaccess (0) | 2023.07.16 |
[wargame] CSRF Advanced (0) | 2023.07.16 |