1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<?php
@$password=$_POST['password'];
if (empty($password)) { ?>
<form method="POST" action="index.php" enctype="multipart/form-data">
<input type="password" name="password" value="">
<input type="submit" value="Login"></form>
<?php
}
else if (sha1($password)=='06381a70e1eb7eb2c16662e1f60b591dbfa11c87'){
echo 'Good !';
// Change to the URL you want to redirect to
$URL="http://www.monweb.com/fichier.php";
header ("Location: $URL");
}
else {
echo 'Go Away !';
}
?>
</body>
</html> |