[Dreamhack CTF] cookie

Sungwuk·2024년 9월 22일
0

dreamhack

목록 보기
6/17

❓ 쿠키값 변경 공격 문제

파일은 그냥 파이썬으로 구현되어 있는 웹페이지 이다.

#!/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',
    'admin': FLAG
}

@app.route('/')
def index():
    username = request.cookies.get('username', None)
    if username:
        return render_template('index.html', text=f'Hello {username}, {"flag is " + FLAG if username == "admin" else "you are not admin"}')
    return render_template('index.html')

@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')) )
            resp.set_cookie('username', username)
            return resp 
        return '<script>alert("wrong password");history.go(-1);</script>'

app.run(host='0.0.0.0', port=8000)

코드에서 username값이 admin이면 flag가 나온다고 한다.

일단
ID: guest
PASS: guest로 로그인 해보자

이런 결과 값이 나오고

개발자 도구로 쿠키를 확인해보면

username이 guest로 되어 있는걸 확인할 수 있다.

이걸 admin으로 수정 후 새로고침 해보자

플래그가 나오는걸 확인할 수 있다.

profile
보안전문가 꿈나무

0개의 댓글