Files
playground/xss.py
T
2023-02-18 07:39:08 +01:00

10 lines
136 B
Python

html = '<b>i am html</b>'
def a_func():
raise ValueError(html)
if __name__ == '__main__':
a_func() # breakpoint here
...