-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmalware.html
More file actions
126 lines (113 loc) · 3.44 KB
/
malware.html
File metadata and controls
126 lines (113 loc) · 3.44 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>⚠️ Alerta Crítico de Segurança</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Roboto+Condensed:wght@700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #1a0000, #330000);
font-family: 'Orbitron', sans-serif;
color: white;
text-align: center;
animation: flicker 0.25s infinite;
}
.container {
padding: 60px 20px;
max-width: 700px;
margin: auto;
}
h1 {
font-size: 3em;
color: #ff4444;
text-shadow: 2px 2px 15px red;
margin-bottom: 30px;
font-family: 'Roboto Condensed', sans-serif;
}
.warning-img {
width: 200px;
filter: drop-shadow(0 0 20px red);
}
.hacker-img {
width: 250px;
margin-top: 40px;
opacity: 0.9;
filter: grayscale(100%) contrast(1.2) drop-shadow(0 0 20px black);
}
.danger-msg {
margin-top: 40px;
font-size: 1.5em;
background: rgba(255, 0, 0, 0.2);
border: 2px solid #ff6666;
padding: 20px;
border-radius: 10px;
font-family: 'Roboto Condensed', sans-serif;
}
.button {
display: inline-block;
margin-top: 35px;
padding: 18px 36px;
background: linear-gradient(to right, #ffcc00, #ffaa00);
color: black;
font-weight: bold;
font-size: 1.2em;
border-radius: 8px;
text-decoration: none;
box-shadow: 0 0 10px #ffcc00;
transition: all 0.3s ease-in-out;
}
.button:hover {
background: linear-gradient(to right, #ffaa00, #ff8800);
transform: scale(1.05);
}
@keyframes shake {
0%, 100% { transform: translate(0, 0); }
20% { transform: translate(-8px, 0); }
40% { transform: translate(8px, 0); }
60% { transform: translate(-8px, 0); }
80% { transform: translate(8px, 0); }
}
.shake {
animation: shake 0.5s infinite;
}
@keyframes flicker {
0%, 100% { opacity: 1; }
50% { opacity: 0.97; }
}
</style>
</head>
<body>
<script>
(function () {
// Verifica se a URL já tem um parâmetro de cache bust
if (!window.location.href.includes('cb=')) {
const newUrl = window.location.origin + window.location.pathname + '?cb=' + new Date().getTime();
window.location.replace(newUrl);
}
})();
</script>
<div class="container shake">
<h1>🚨 Sistema comprometido!</h1>
<img class="warning-img" src="https://i.imgur.com/ow0Cj3y.png" alt="Perigo">
<div class="danger-msg">
Foi detectado um vírus crítico em seu sistema.<br />
<strong>Trojan.Stealer.Active</strong><br />
Risco de perda de dados bancários e senhas.
</div>
<a class="button" href="https://ring-0-website--pr3-marcel-copy-template-7o2zhy4a.web.app/">Clique aqui para proteger agora</a>
<img class="hacker-img" src="https://i.imgur.com/2zQ6BVo.png" alt="Hacker">
</div>
<audio autoplay loop>
<source src="https://actions.google.com/sounds/v1/alarms/alarm_clock.ogg" type="audio/ogg">
<source src="https://actions.google.com/sounds/v1/alarms/alarm_clock.mp3" type="audio/mpeg">
</audio>
<script>
setInterval(() => {
document.body.classList.toggle('shake');
}, 350);
</script>
</body>
</html>