mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
9 lines
228 B
Python
9 lines
228 B
Python
"""XSS — unsupported fixture (low confidence).
|
|
|
|
Expected verdict: Unsupported(ConfidenceTooLow)
|
|
"""
|
|
|
|
|
|
def render(input_text):
|
|
"""Vulnerable render in unsupported-confidence test."""
|
|
print(f"<span>{input_text}</span>")
|