mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
5 lines
191 B
PHP
5 lines
191 B
PHP
<?php
|
|
// Baseline: tainted body flows through a non-parser string operation.
|
|
// No XML parser entry point, no XXE label classification.
|
|
$xml = $_GET['xml'];
|
|
echo "<wrap>" . $xml . "</wrap>";
|