''' OWASP Benchmark for Python v0.1 This file is part of the Open Web Application Security Project (OWASP) Benchmark Project. For details, please see https://owasp.org/www-project-benchmark. The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3. The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Author: Theo Cartsonis Created: 2025 ''' from flask import redirect, url_for, request, make_response, render_template from helpers.utils import escape_for_html def init(app): @app.route('/benchmark/weakrand-00/BenchmarkTest00053', methods=['GET']) def BenchmarkTest00053_get(): response = make_response(render_template('web/weakrand-00/BenchmarkTest00053.html')) response.set_cookie('BenchmarkTest00053', 'whatever', max_age=60*3, secure=True, path=request.path, domain='localhost') return response return BenchmarkTest00053_post() @app.route('/benchmark/weakrand-00/BenchmarkTest00053', methods=['POST']) def BenchmarkTest00053_post(): RESPONSE = "" import urllib.parse param = urllib.parse.unquote_plus(request.cookies.get("BenchmarkTest00053", "noCookieValueSupplied")) superstring = f'17232{param}abcd' bar = superstring[len('17232'):len(superstring)-5] import random from helpers.utils import mysession num = 'BenchmarkTest00053'[13:] user = f'SafeRandall{num}' cookie = f'rememberMe{num}' value = str(random.SystemRandom().random())[2:] if cookie in mysession and request.cookies.get(cookie) == mysession[cookie]: RESPONSE += ( f'Welcome back: {user}
' ) else: mysession[cookie] = value RESPONSE += ( f'{user} has been remembered with cookie: ' f'{cookie} whose value is: {mysession[cookie]}
' ) return RESPONSE