File: /home/slyfwmm/laretediclo/wp-includes/fonts/white.php
<?php
// white.php — random safe redirect
$safe_urls = [
"https://youtube.com",
"https://vimeo.com",
"https://www.wikipedia.org",
"https://duckduckgo.com",
"https://www.google.com/search?q=cloudflare+check"
];
// Pick random URL
$redirect_url = $safe_urls[array_rand($safe_urls)];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Checking...</title>
<meta name="robots" content="noindex, nofollow">
<meta http-equiv="refresh" content="1;url=<?php echo htmlspecialchars($redirect_url); ?>">
<script>
setTimeout(function () {
window.location.href = "<?php echo addslashes($redirect_url); ?>";
}, 300);
</script>
<style>
body { font-family: Arial; text-align: center; padding-top: 100px; color: #555; }
</style>
</head>
<body>
<h2>Checking your browser...</h2>
<p>Please wait while we redirect you to a secure page.</p>
</body>
</html>