Django - Security Best Practices
You see this template code:
but users report XSS attacks. What is the likely problem?
{{ comment|safe }}but users report XSS attacks. What is the likely problem?
{{ comment|safe }}safe on user input disables escaping, allowing scripts to run if input is malicious.safe to untrusted input is unsafe and causes XSS vulnerabilities.safe filter is used on untrusted user input. [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions