File Inclusion
Low Security Level
<?php
// The page we wish to display
$file = $_GET[ 'page' ];
?>Medium Security Level
<?php
// The page we wish to display
$file = $_GET[ 'page' ];
// Input validation
$file = str_replace( array( "http://", "https://" ), "", $file );
$file = str_replace( array( "../", "..\"" ), "", $file );
?>High Security Level
Impossible Security Level
Última actualización