File size: 9,306 Bytes
2f2db87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BRUTALIST CYBER THREAT MONITOR</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
        
        body {
            font-family: 'Space Mono', monospace;
            background-color: #000;
            color: #fff;
        }
        
        .brutal-border {
            border: 8px solid #ff0000;
            box-shadow: 16px 16px 0px #000000;
            position: relative;
            background-color: #000;
        }
        
        .brutal-border::before {
            content: "";
            position: absolute;
            top: -16px;
            left: -16px;
            right: -16px;
            bottom: -16px;
            border: 4px solid #fff;
            pointer-events: none;
        }
        
        .terminal-text {
            color: #ff0000;
            text-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
        }
        
        .blink {
            animation: blink 1s step-end infinite;
        }
        
        @keyframes blink {
            from, to { opacity: 1; }
            50% { opacity: 0; }
        }
        
        .scanline {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 0, 0, 0.1) 50%,
                rgba(255, 0, 0, 0.1) 100%
            );
            background-size: 100% 4px;
            pointer-events: none;
            mix-blend-mode: overlay;
        }
        
        .stat-box {
            background-color: #111;
            border: 2px solid #ff0000;
        }
        
        .threat-box {
            background-color: #111;
            border: 1px solid #ff0000;
        }
        
        .rss-feed {
            max-height: 300px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #ff0000 #000;
        }
        
        .rss-feed::-webkit-scrollbar {
            width: 8px;
        }
        
        .rss-feed::-webkit-scrollbar-track {
            background: #000;
        }
        
        .rss-feed::-webkit-scrollbar-thumb {
            background-color: #ff0000;
            border-radius: 4px;
        }
        
        .rss-item {
            border-bottom: 1px solid #333;
            padding: 12px 0;
        }
        
        .rss-item:last-child {
            border-bottom: none;
        }
        
        .rss-title {
            color: #ff0000;
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .rss-date {
            color: #999;
            font-size: 0.8rem;
            margin-bottom: 6px;
        }
        
        .rss-description {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        .cybermap-container {
            width: 100%;
            height: 317px;
            margin-top: 20px;
        }
    </style>
</head>
<body class="min-h-screen flex flex-col items-center justify-center p-4">
    <div class="w-full max-w-4xl">
        <div class="bg-black p-6 brutal-border mb-8 relative overflow-hidden">
            <div class="scanline"></div>
            <div class="flex justify-between items-center mb-4">
                <h1 class="text-3xl font-bold terminal-text">KASPERSKY THREAT MONITOR</h1>
                <div class="flex items-center">
                    <span class="terminal-text mr-2">LIVE</span>
                    <div class="w-3 h-3 bg-red-500 rounded-full blink"></div>
                </div>
            </div>
            
            <div class="grid grid-cols-3 gap-4 mb-4">
                <div class="stat-box p-3">
                    <div class="text-xs uppercase text-white mb-1">Threats</div>
                    <div class="text-2xl font-bold terminal-text">24,567</div>
                </div>
                <div class="stat-box p-3">
                    <div class="text-xs uppercase text-white mb-1">Countries</div>
                    <div class="text-2xl font-bold terminal-text">187</div>
                </div>
                <div class="stat-box p-3">
                    <div class="text-xs uppercase text-white mb-1">Last Update</div>
                    <div class="text-xl font-bold terminal-text" id="current-time">--:--:--</div>
                </div>
            </div>
            
            <div class="relative" style="height: 60px;">
                <rssapp-ticker id="tccUCm0DWwfoAHE1"></rssapp-ticker>
                <script src="https://widget.rss.app/v1/ticker.js" type="text/javascript" async></script>
            </div>
            
            <!-- Kaspersky Cybermap Section -->
            <div class="mt-6">
                <h2 class="text-xl font-bold terminal-text mb-3">GLOBAL CYBER THREAT MAP</h2>
                <div class="cybermap-container">
                    <iframe width="100%" height="100%" src="https://cybermap.kaspersky.com/en/widget/dynamic/dark" frameborder="0"></iframe>
                </div>
            </div>
            
            <div class="mt-4 flex justify-between text-xs">
                <div class="terminal-text">SYSTEM STATUS: OPERATIONAL</div>
                <div class="terminal-text">ACCESS: PUBLIC</div>
                <div class="terminal-text">SECURITY LEVEL: MAXIMUM</div>
            </div>
        </div>
        
        <div class="bg-black p-4 brutal-border">
            <div class="flex overflow-x-auto space-x-4">
                <div class="threat-box flex-shrink-0 p-2">
                    <div class="text-xs text-white">THREAT TYPE</div>
                    <div class="terminal-text">MALWARE</div>
                </div>
                <div class="threat-box flex-shrink-0 p-2">
                    <div class="text-xs text-white">THREAT TYPE</div>
                    <div class="terminal-text">PHISHING</div>
                </div>
                <div class="threat-box flex-shrink-0 p-2">
                    <div class="text-xs text-white">THREAT TYPE</div>
                    <div class="terminal-text">SPAM</div>
                </div>
                <div class="threat-box flex-shrink-0 p-2">
                    <div class="text-xs text-white">THREAT TYPE</div>
                    <div class="terminal-text">EXPLOITS</div>
                </div>
                <div class="threat-box flex-shrink-0 p-2">
                    <div class="text-xs text-white">THREAT TYPE</div>
                    <div class="terminal-text">BOTNETS</div>
                </div>
                <div class="threat-box flex-shrink-0 p-2">
                    <div class="text-xs text-white">THREAT TYPE</div>
                    <div class="terminal-text">DDoS</div>
                </div>
            </div>
        </div>
    </div>

    <script>
        function updateTime() {
            const now = new Date();
            const timeString = now.toLocaleTimeString();
            document.getElementById('current-time').textContent = timeString;
        }
        
        setInterval(updateTime, 1000);
        updateTime();
        
        // Simulate some terminal-like activity
        const statusElements = document.querySelectorAll('.terminal-text');
        setInterval(() => {
            statusElements.forEach(el => {
                if (Math.random() > 0.8) {
                    el.style.opacity = '0.7';
                    setTimeout(() => {
                        el.style.opacity = '1';
                    }, 100);
                }
            });
        }, 3000);
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=222tuesday/cybersecurity-live-threat-rss" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p><p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=calgonzalez/tools3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>