Skip to content

Commit d2b03bb

Browse files
committed
Python: Fix SimpleXmlRpcServer.ql
1 parent 4abab22 commit d2b03bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/ql/src/experimental/Security/CWE-611/SimpleXmlRpcServer.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
*/
1111

1212
private import python
13-
private import experimental.semmle.python.Concepts
13+
private import semmle.python.Concepts
1414
private import semmle.python.ApiGraphs
1515

1616
from DataFlow::CallCfgNode call, string kinds
1717
where
1818
call = API::moduleImport("xmlrpc").getMember("server").getMember("SimpleXMLRPCServer").getACall() and
1919
kinds =
20-
strictconcat(ExperimentalXML::XMLParsingVulnerabilityKind kind |
20+
strictconcat(XML::XMLParsingVulnerabilityKind kind |
2121
kind.isBillionLaughs() or kind.isQuadraticBlowup()
2222
|
2323
kind, ", "

0 commit comments

Comments
 (0)