mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
6 lines
228 B
PHP
6 lines
228 B
PHP
|
|
<?php
|
||
|
|
// Baseline: expression is a compile-time constant. No taint reaches
|
||
|
|
// SimpleXMLElement::xpath so no XPATH_INJECTION finding fires.
|
||
|
|
$xml = simplexml_load_file("users.xml");
|
||
|
|
$nodes = $xml->xpath("//user[@role='admin']");
|