16 lines
312 B
HTML
16 lines
312 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body onload="redirect()">
|
|
|
|
<h1>404 - Redirecting to https://arm.kali.org/</h1>
|
|
|
|
<script>
|
|
function redirect() {
|
|
location.replace("https://arm.kali.org/")
|
|
// location.replace('https://web.archive.org/web/*/https://arm.kali.org'+window.location.pathname+'*')
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|