mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
9 lines
208 B
Python
9 lines
208 B
Python
import xmltodict
|
|
|
|
x = "some xml"
|
|
|
|
xmltodict.parse(x) # $ input=x
|
|
xmltodict.parse(xml_input=x) # $ input=x
|
|
|
|
xmltodict.parse(x, disable_entities=False) # $ input=x vuln='Billion Laughs' vuln='Quadratic Blowup'
|