Writeups ISITDTU 2024 (Quals) - ph1sher
We participated in the ISITDTU CTF 2024 competition, finishing in 15th place out of 315 teams with 21 challenges successfully solved.
“Everything is working fine, except for the crypto guys” - Quote by sondt
Web Another one Review the src code
@app.route('/register', methods=['POST']) def register(): json_data = request.data if "admin" in json_data: return jsonify(message="Blocked!") data = ujson.loads(json_data) username = data.get('username') password = data.get('password') role = data.get('role') if role !