-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwarn.html
38 lines (35 loc) · 1.04 KB
/
warn.html
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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<meta charset="utf-8">
<html lang="pt-BR">
<head>
<link rel="stylesheet" href="style.css">
</head>
<body class="warn">
<header>
<a id="partner_url">
<img id="partner" class="logo">
</a>
</header>
<main>
<img class="sign" src="images/warn.png"></img>
<p class="title">Site malicioso detectado!</h2>
<p class="text">Este site foi bloqueado por possuir conteúdo malicioso.</p>
<p class="text">O acesso não é recomendado mas, caso deseje prosseguir mesmo assim, <a id="link" href="https://ring0networks.com.br">clique aqui</a>.</p>
</main>
<footer>
<a href="https://ring0networks.com.br">
<img class="ring-0"
src="images/powered_by_ring-0_logo_1c3678_blue.png"
alt="Powered by Ring-0 Networks"
height="50vh">
</a>
</footer>
<script src="site.js"></script>
<script>
let ref = document.referrer;
if (ref) {
document.getElementById("link").href = ref;
}
</script>
</body>
</html>