Do not use template created with strings
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
ID: python-flask/no-render-template-string
Language: Python
Severity: Error
Category: Security
CWE: 96
Description
Using templates created with string leads to server-side injection. Use template based on files.
Learn More
Non-Compliant Code Examples
import os
from functools import wraps
from flask import request, redirect, url_for, render_template_string
API_KEY = os.environ.get('VULN_FLASK_APP_API_KEY')
# Decorator to check if user is logged in
def require_api_key(f):
@wraps(f)
def wrap(*args, **kwargs):
api_key = request.cookies.get('api_key')
if API_KEY is None or api_key == API_KEY:
return f(*args, **kwargs)
else:
return render_template_string('no api key found'), 401
return wrap