-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathBenchmarkTest00098.py
More file actions
53 lines (38 loc) · 1.57 KB
/
Copy pathBenchmarkTest00098.py
File metadata and controls
53 lines (38 loc) · 1.57 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'''
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/xss-00/BenchmarkTest00098', methods=['GET'])
def BenchmarkTest00098_get():
return BenchmarkTest00098_post()
@app.route('/benchmark/xss-00/BenchmarkTest00098', methods=['POST'])
def BenchmarkTest00098_post():
RESPONSE = ""
param = request.form.get("BenchmarkTest00098")
if not param:
param = ""
import configparser
bar = 'safe!'
conf43475 = configparser.ConfigParser()
conf43475.add_section('section43475')
conf43475.set('section43475', 'keyA-43475', 'a-Value')
conf43475.set('section43475', 'keyB-43475', param)
bar = conf43475.get('section43475', 'keyB-43475')
dict = {}
dict['bar'] = bar
dict['otherarg'] = 'this is it'
RESPONSE += (
'bar is \'{0[bar]}\' and otherarg is \'{0[otherarg]}\''.format(dict)
)
return RESPONSE