on
Dreamhack - cookie
Dreamhack - cookie
SQL Injection만 풀다 보니까 이제 막 기초를 밟고 있는 나에게는 어렵게 느껴지기도 해서 다른 wargame도 찾아보았다.
Dreamhack에 가장 기초 부분부터 풀기 시작할 예정이다.
cookie 문제의 코드
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 'alert("not found user");history.go(-1);' if pw == password: resp = make_response(redirect(url_for('index')) ) resp.set_cookie('username', username) return resp return 'alert("wrong password");history.go(-1);' app.run(host='0.0.0.0', port=8000)
이 코드에서 알 수 있는 것은 user는 guest와 admin 2명이 있고 guest의 pw는 admin admin의 pw는 flag라는 것을 알 수 있다. 우리는 admin의 pw인 flag를 알아내야 하고 그러려면 admin의 계정을 알아내야 한다.
일단 첫번째로 지금 주어진 것에서 할 수 있는 것은 guest로 로그인을 하는 것이다.
로그인을 하게 되면 이렇게 admin이 아니라고 뜨는데 여기서 문제의 제목과 같이 cookie를 이용해서 admin 계정에 접근할 것이다.
현재 값은 guest이다. 이 값을 admin으로 바꿔주면 admin의 계정에 접근할 수 있다.
사용한 프로그램은 확장프로그램 - EditThisCookie 이다.
바꿔주고 새로고침을 해주면
이렇게 flag를 얻을 수 있다.
from http://iamstudying.tistory.com/21 by ccl(A) rewrite - 2021-12-16 21:00:39