1 2 3 4 5 6 7 8 9 10
| <?php libxml_disable_entity_loader(false); $data = file_get_contents("php://input"); $xml = simplexml_load_string($data,'SimpleXMLElement', LIBXML_NOENT); if (isset($xml->username)) { echo $xml->username; } else { show_source(__FILE__); } ?>
|