mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
10 lines
305 B
Plaintext
10 lines
305 B
Plaintext
import csharp
|
|
import semmle.code.csharp.security.xml.InsecureXMLQuery
|
|
|
|
from ObjectCreation creation, Expr evidence, string reason
|
|
where
|
|
XmlSettings::insecureResolverSettings(creation, evidence, reason)
|
|
or
|
|
XmlSettings::dtdEnabledSettings(creation, evidence, reason)
|
|
select creation, evidence, reason
|