Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 보안뉴스 한줄요약
- Oracle SQL
- 카카오프로젝트 100
- 자바스크립트 기본 문법
- 카카오프로젝트
- 카카오프로젝트100
- 보안뉴스요약
- javascript
- php
- 자바스크립트 node
- oracle
- 보안뉴스
- 자바스크립트 API
- 보안뉴스한줄요약
- 랜섬웨어
- 다크웹
- 파이썬
- numpy
- GIT
- 자바스크립트 객체
- ES6
- 오라클
- 자바스크립트 element api
- 자바스크립트 jQuery
- 보안뉴스 요약
- 자바스크립트 prototype
- 깃허브
- 자바스크립트
- python
- oracle db
Archives
- Today
- Total
FU11M00N
[ Dreamhack ] cookie 본문
- 문제 정보
쿠키로 인증 상태를 관리하는 간단한 로그인 서비스입니다.
admin 계정으로 로그인에 성공하면 플래그를 획득할 수 있습니다.
#!/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)
users 딕셔너리에 guest와 admin 값이 있다.
if문으로 쿠키 값이 만약 guest면 you are not admin을 출력시키고 admin으로 로그인하면 플래그를 얻을 수 있는 것 같다.
로그인 창에서 guest로 로그인을 시도하면 아래와 같이 로그인이 되고 "you are not admin"이라는 문구가 출력된다.
guest로 로그인된 상태에서 username의 쿠키 value를 admin으로 변경해주면 아래와 같이 플래그가 출력된다.
'Web Hacking > DreamHack' 카테고리의 다른 글
[ DreamHack ] image-storage (0) | 2021.03.28 |
---|---|
[ DreamHack ] file-download-1 (0) | 2021.03.28 |
[ DreamHack ] xss-1 (0) | 2021.03.28 |
[ DreamHack ] pathtraversal (0) | 2021.03.28 |
[ Dreamhack ] simplesqli (0) | 2021.03.28 |
Comments