mirror of
https://github.com/github/codeql.git
synced 2026-03-30 04:08:16 +02: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'
|