mirror of
https://github.com/elicpeter/nyx.git
synced 2026-07-18 21:21:03 +02:00
8 lines
180 B
Python
8 lines
180 B
Python
from helper import get_user_input, transform
|
|||
|
|||
data = get_user_input()
|
|||
|
|||
# Call with escape_html=False -> passthrough path, taint reaches eval
|
|||
raw = transform(data, False)
|
|||
eval(raw)
|