docker-vulnerable-dvwa/dvwa/vulnerabilities/xss_r/source/medium.php
2018-10-12 15:49:58 +00:00

15 lines
288 B
PHP

<?php
header ("X-XSS-Protection: 0");
// Is there any input?
if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) {
// Get input
$name = str_replace( '<script>', '', $_GET[ 'name' ] );
// Feedback for end user
$html .= "<pre>Hello ${name}</pre>";
}
?>