mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
9 lines
223 B
Python
9 lines
223 B
Python
import xmltodict
|
|
|
|
x = "some xml"
|
|
|
|
xmltodict.parse(x) # $ xmlInput=x
|
|
xmltodict.parse(xml_input=x) # $ xmlInput=x
|
|
|
|
xmltodict.parse(x, disable_entities=False) # $ xmlInput=x xmlVuln='Billion Laughs' xmlVuln='Quadratic Blowup'
|