-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathBenchmarkTest00356.py
More file actions
73 lines (57 loc) · 1.89 KB
/
Copy pathBenchmarkTest00356.py
File metadata and controls
73 lines (57 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
'''
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/pathtraver-00/BenchmarkTest00356', methods=['GET'])
def BenchmarkTest00356_get():
return BenchmarkTest00356_post()
@app.route('/benchmark/pathtraver-00/BenchmarkTest00356', methods=['POST'])
def BenchmarkTest00356_post():
RESPONSE = ""
param = ""
for name in request.form.keys():
if "BenchmarkTest00356" in request.form.getlist(name):
param = name
break
TestParam = "This should never happen"
if 'should' not in TestParam:
bar = "Ifnot case passed"
else:
bar = param
import helpers.utils
fileName = None
fd = None
if '../' in bar:
RESPONSE += (
'File name must not contain \'../\''
)
return RESPONSE
try:
fileName = f'{helpers.utils.TESTFILES_DIR}/{bar}'
fd = open(fileName, 'wb')
RESPONSE += (
f'Now ready to write to file: {escape_for_html(fileName)}'
)
except IOError as e:
RESPONSE += (
f'Problem reading from file \'{escape_for_html(fileName)}\': '
f'{escape_for_html(e.strerror)}'
)
finally:
try:
if fd is not None:
fd.close()
except IOError:
pass # "// we tried..."
return RESPONSE