first commit
This commit is contained in:
parent
985a5c928c
commit
f40a84879c
551 changed files with 72374 additions and 24 deletions
18
dvwa/vulnerabilities/xss_r/source/impossible.php
Normal file
18
dvwa/vulnerabilities/xss_r/source/impossible.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
// Is there any input?
|
||||
if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) {
|
||||
// Check Anti-CSRF token
|
||||
checkToken( $_REQUEST[ 'user_token' ], $_SESSION[ 'session_token' ], 'index.php' );
|
||||
|
||||
// Get input
|
||||
$name = htmlspecialchars( $_GET[ 'name' ] );
|
||||
|
||||
// Feedback for end user
|
||||
$html .= "<pre>Hello ${name}</pre>";
|
||||
}
|
||||
|
||||
// Generate Anti-CSRF token
|
||||
generateSessionToken();
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue