-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
440 lines (357 loc) · 22.9 KB
/
index.html
File metadata and controls
440 lines (357 loc) · 22.9 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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyber Threat Intel | Merve Guler</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
:root {
/* DARK MODE VARIABLES */
--bg-color: #0d1117;
--card-bg: #161b22;
--text-main: #c9d1d9;
--text-muted: #8b949e;
--border: #30363d;
--accent: #00ff41;
--accent-glow: rgba(0, 255, 65, 0.2);
--danger: #ff003c;
--sun-color: #f39c12;
--source-badge-bg: #1f6feb;
}
body.light-mode {
--bg-color: #f6f8fa;
--card-bg: #ffffff;
--text-main: #24292f;
--text-muted: #57606a;
--border: #d0d7de;
--accent: #1f883d;
--accent-glow: rgba(31, 136, 61, 0.1);
--source-badge-bg: #0969da;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
transition: background-color 0.3s, color 0.3s;
display: flex; flex-direction: column; min-height: 100vh;
}
.container { max-width: 1000px; margin: 0 auto; padding: 20px; flex: 1; width: 100%; }
/* HEADER */
header {
display: flex; justify-content: space-between; align-items: center;
padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
h1 {
font-family: 'JetBrains Mono', monospace; color: var(--accent); margin: 0;
font-size: 1.8rem; text-shadow: 0 0 5px var(--accent-glow);
}
.header-controls { display: flex; gap: 15px; align-items: center; }
.icon-btn {
background: none; border: 1px solid var(--border); color: var(--text-main);
padding: 8px 12px; border-radius: 6px; cursor: pointer; font-size: 1.1rem; transition: all 0.2s;
text-decoration: none; display: flex; align-items: center; justify-content: center;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.fa-sun { color: var(--sun-color); filter: drop-shadow(0 0 3px var(--sun-color)); }
/* FILTERS */
.controls-bar { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.filter-container {
display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.filter-label { font-size: 0.8rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; font-weight: bold; margin-right: 5px; }
.filter-btn {
background-color: var(--card-bg); border: 1px solid var(--border); color: var(--text-muted);
padding: 6px 12px; border-radius: 4px; cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: 0.2s;
}
.filter-btn:hover, .filter-btn.active { background-color: var(--accent); color: #000; border-color: var(--accent); }
.filter-btn.zeroday-btn { border-color: var(--danger); color: var(--danger); }
.filter-btn.zeroday-btn:hover, .filter-btn.zeroday-btn.active { background-color: var(--danger); color: #fff; }
/* LIST LAYOUT */
.grid { display: flex; flex-direction: column; gap: 20px; }
.card {
background-color: var(--card-bg); border: 1px solid var(--border); border-radius: 6px;
padding: 20px; display: flex; flex-direction: column; position: relative;
transition: transform 0.2s; overflow: hidden; border-left: 4px solid var(--accent);
}
.card:hover { transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); border-color: var(--accent); }
.zeroday-banner {
background-color: var(--danger); color: #fff; font-size: 0.7rem; font-weight: bold;
padding: 4px 8px; position: absolute; top: 0; right: 0;
border-bottom-left-radius: 6px; animation: pulse 1.5s infinite;
}
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; } }
.meta { display: flex; gap: 15px; margin-bottom: 8px; font-size: 0.75rem; font-family: 'JetBrains Mono'; align-items: center;}
.source-badge {
font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px;
color: var(--source-badge-bg);
}
.date-badge { color: var(--text-muted); }
h2 { font-size: 1.2rem; margin: 0 0 10px 0; line-height: 1.3; }
h2 a { color: var(--text-main); text-decoration: none; }
h2 a:hover { color: var(--accent); text-decoration: underline; }
.summary { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 15px; }
.card-footer {
border-top: 1px solid var(--border); padding-top: 12px;
display: flex; justify-content: flex-end; align-items: center;
}
.share-links { display: flex; gap: 15px; }
.share-icon { color: var(--text-muted); font-size: 1.1rem; transition: 0.2s; }
.share-icon:hover { color: var(--accent); transform: scale(1.1); }
.share-icon:hover .fa-x-twitter { color: var(--text-main); }
/* NO CONTENT MESSAGE */
.no-content {
display: none; /* Hidden by default */
text-align: center;
padding: 40px;
background: var(--card-bg);
border: 1px dashed var(--border);
border-radius: 6px;
color: var(--text-muted);
font-family: 'JetBrains Mono';
}
/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.page-btn {
background: var(--card-bg); border: 1px solid var(--border); color: var(--text-main);
padding: 8px 16px; border-radius: 4px; cursor: pointer; font-weight: bold;
}
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-btn:disabled { opacity: 0.5; cursor: not-allowed; border-color: var(--border); color: var(--text-muted); }
.page-info { align-self: center; font-family: 'JetBrains Mono'; font-size: 0.9rem; }
footer { margin-top: 50px; text-align: center; color: var(--text-muted); font-size: 0.85rem; padding-bottom: 20px; }
.heart { color: #ff003c; animation: beat 1s infinite alternate; display: inline-block; }
@keyframes beat { to { transform: scale(1.1); } }
.export-btn {
background-color: var(--card-bg); border: 1px solid var(--accent); color: var(--accent);
padding: 6px 12px; border-radius: 4px; cursor: pointer; font-weight: bold;
}
.export-btn:hover { background-color: var(--accent); color: #000; }
</style>
</head>
<body>
<div class="container">
<header>
<div>
<h1>/// CYBER_INTEL_FEED</h1>
<small style="font-family: 'JetBrains Mono'; color: var(--text-muted);">
Status: <span style="color:var(--accent)">ONLINE</span> | 2026-03-29 08:32 UTC
</small>
</div>
<div class="header-controls">
<button class="icon-btn" id="themeToggle"><i class="fas fa-sun"></i></button>
<a href="https://github.com/merv3guler/cyber-news-feed" target="_blank" class="icon-btn" title="Go to Repo"><i class="fab fa-github"></i></a>
</div>
</header>
<div class="controls-bar">
<div class="filter-container">
<span class="filter-label">SOURCES:</span>
<button class="filter-btn active" onclick="applyFilter('all')">ALL</button>
<button class="filter-btn zeroday-btn" onclick="applyFilter('zeroday')">ZERO DAY</button>
<button class="filter-btn" onclick="applyFilter('The Hacker News')">The Hacker News</button>
<button class="filter-btn" onclick="applyFilter('BleepingComputer')">BleepingComputer</button>
<button class="filter-btn" onclick="applyFilter('CISA Alerts')">CISA Alerts</button>
<button class="filter-btn" onclick="applyFilter('Google Security')">Google Security</button>
<button class="filter-btn" onclick="applyFilter('The Register')">The Register</button>
<button class="filter-btn" onclick="applyFilter('SANS ISC')">SANS ISC</button>
<button class="filter-btn" onclick="applyFilter('Krebs on Security')">Krebs on Security</button>
<button class="filter-btn" onclick="applyFilter('Schneier on Security')">Schneier on Security</button>
<button class="filter-btn" onclick="applyFilter('Palo Alto Unit 42')">Palo Alto Unit 42</button>
<button class="filter-btn" onclick="applyFilter('Trend Micro')">Trend Micro</button>
<button class="filter-btn" onclick="applyFilter('Dark Reading')">Dark Reading</button>
<button class="filter-btn" onclick="applyFilter('Threatpost')">Threatpost</button>
<button class="filter-btn" onclick="applyFilter('Exploit-DB')">Exploit-DB</button>
</div>
<div style="display:flex; justify-content:flex-end; margin-top:10px;">
<button class="export-btn" onclick="exportToExcel()"><i class="fas fa-file-excel"></i> Export CSV</button>
</div>
</div>
<div class="grid" id="newsGrid">
<article class="card"
data-source="The Hacker News"
data-zeroday="false">
<div class="meta">
<span class="source-badge">The Hacker News</span>
<span class="date-badge"> | 2026-03-28 15:40</span>
</div>
<h2><a href="https://thehackernews.com/2026/03/iran-linked-hackers-breach-fbi.html" target="_blank">Iran-Linked Hackers Breach FBI Director’s Personal Email, Hit Stryker With Wiper Attack</a></h2>
<div class="summary">Threat actors with ties to Iran successfully broke into the personal email account of Kash Patel, the director of the U.S. Federal Bureau of Investigation (FBI), and leaked a cache of photos and other documents to the internet.
Handala Hack Team, which carried out the breach, said on its website that Patel "will now find his name among the list of successfully hacked victims." In a statement</div>
<div class="card-footer">
<div class="share-links">
<a href="https://wa.me/?text=https://thehackernews.com/2026/03/iran-linked-hackers-breach-fbi.html" target="_blank" class="share-icon"><i class="fab fa-whatsapp"></i></a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://thehackernews.com/2026/03/iran-linked-hackers-breach-fbi.html" target="_blank" class="share-icon"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/intent/tweet?text=Iran-Linked Hackers Breach FBI Director’s Personal Email, Hit Stryker With Wiper Attack&url=https://thehackernews.com/2026/03/iran-linked-hackers-breach-fbi.html" target="_blank" class="share-icon"><i class="fa-brands fa-x-twitter"></i></a>
<a href="mailto:?subject=Cyber Intel&body=Iran-Linked Hackers Breach FBI Director’s Personal Email, Hit Stryker With Wiper Attack - https://thehackernews.com/2026/03/iran-linked-hackers-breach-fbi.html" class="share-icon"><i class="fas fa-envelope"></i></a>
</div>
</div>
</article>
<article class="card"
data-source="SANS ISC"
data-zeroday="false">
<div class="meta">
<span class="source-badge">SANS ISC</span>
<span class="date-badge"> | 2026-03-28 15:09</span>
</div>
<h2><a href="https://isc.sans.edu/diary/rss/32842" target="_blank">TeamPCP Supply Chain Campaign: Update 003 - Operational Tempo Shift as Campaign Enters Monetization Phase With No New Compromises in 48 Hours, (Sat, Mar 28th)</a></h2>
<div class="summary">This is the third update to the TeamPCP supply chain campaign threat intelligence report, "When the Security Scanner Became the Weapon" (v3.0, March 25, 2026). Update 002 covered developments through March 27, including the Telnyx PyPI compromise and Vect ransomware partnership. This update covers developments from March 27-28, 2026.
</div>
<div class="card-footer">
<div class="share-links">
<a href="https://wa.me/?text=https://isc.sans.edu/diary/rss/32842" target="_blank" class="share-icon"><i class="fab fa-whatsapp"></i></a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://isc.sans.edu/diary/rss/32842" target="_blank" class="share-icon"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/intent/tweet?text=TeamPCP Supply Chain Campaign: Update 003 - Operational Tempo Shift as Campaign Enters Monetization Phase With No New Compromises in 48 Hours, (Sat, Mar 28th)&url=https://isc.sans.edu/diary/rss/32842" target="_blank" class="share-icon"><i class="fa-brands fa-x-twitter"></i></a>
<a href="mailto:?subject=Cyber Intel&body=TeamPCP Supply Chain Campaign: Update 003 - Operational Tempo Shift as Campaign Enters Monetization Phase With No New Compromises in 48 Hours, (Sat, Mar 28th) - https://isc.sans.edu/diary/rss/32842" class="share-icon"><i class="fas fa-envelope"></i></a>
</div>
</div>
</article>
<article class="card"
data-source="BleepingComputer"
data-zeroday="false">
<div class="meta">
<span class="source-badge">BleepingComputer</span>
<span class="date-badge"> | 2026-03-28 14:35</span>
</div>
<h2><a href="https://www.bleepingcomputer.com/news/security/new-infinity-stealer-malware-grabs-macos-data-via-clickfix-lures/" target="_blank">New Infinity Stealer malware grabs macOS data via ClickFix lures</a></h2>
<div class="summary">A new info-stealing malware named Infinity Stealer is targeting macOS systems with a Python payload packaged as an executable using the open-source Nuitka compiler. [...]</div>
<div class="card-footer">
<div class="share-links">
<a href="https://wa.me/?text=https://www.bleepingcomputer.com/news/security/new-infinity-stealer-malware-grabs-macos-data-via-clickfix-lures/" target="_blank" class="share-icon"><i class="fab fa-whatsapp"></i></a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://www.bleepingcomputer.com/news/security/new-infinity-stealer-malware-grabs-macos-data-via-clickfix-lures/" target="_blank" class="share-icon"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/intent/tweet?text=New Infinity Stealer malware grabs macOS data via ClickFix lures&url=https://www.bleepingcomputer.com/news/security/new-infinity-stealer-malware-grabs-macos-data-via-clickfix-lures/" target="_blank" class="share-icon"><i class="fa-brands fa-x-twitter"></i></a>
<a href="mailto:?subject=Cyber Intel&body=New Infinity Stealer malware grabs macOS data via ClickFix lures - https://www.bleepingcomputer.com/news/security/new-infinity-stealer-malware-grabs-macos-data-via-clickfix-lures/" class="share-icon"><i class="fas fa-envelope"></i></a>
</div>
</div>
</article>
<article class="card"
data-source="The Hacker News"
data-zeroday="true">
<div class="zeroday-banner">⚠️ ZERO-DAY DETECTED</div>
<div class="meta">
<span class="source-badge">The Hacker News</span>
<span class="date-badge"> | 2026-03-28 09:11</span>
</div>
<h2><a href="https://thehackernews.com/2026/03/citrix-netscaler-under-active-recon-for.html" target="_blank">Citrix NetScaler Under Active Recon for CVE-2026-3055 (CVSS 9.3) Memory Overread Bug</a></h2>
<div class="summary">A recently disclosed critical security flaw impacting Citrix NetScaler ADC and NetScaler Gateway is witnessing active reconnaissance activity, according to Defused Cyber and watchTowr.
The vulnerability, CVE-2026-3055 (CVSS score: 9.3), refers to a case of insufficient input validation leading to memory overread, which an attacker could exploit to leak potentially sensitive information.
Per</div>
<div class="card-footer">
<div class="share-links">
<a href="https://wa.me/?text=https://thehackernews.com/2026/03/citrix-netscaler-under-active-recon-for.html" target="_blank" class="share-icon"><i class="fab fa-whatsapp"></i></a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://thehackernews.com/2026/03/citrix-netscaler-under-active-recon-for.html" target="_blank" class="share-icon"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/intent/tweet?text=Citrix NetScaler Under Active Recon for CVE-2026-3055 (CVSS 9.3) Memory Overread Bug&url=https://thehackernews.com/2026/03/citrix-netscaler-under-active-recon-for.html" target="_blank" class="share-icon"><i class="fa-brands fa-x-twitter"></i></a>
<a href="mailto:?subject=Cyber Intel&body=Citrix NetScaler Under Active Recon for CVE-2026-3055 (CVSS 9.3) Memory Overread Bug - https://thehackernews.com/2026/03/citrix-netscaler-under-active-recon-for.html" class="share-icon"><i class="fas fa-envelope"></i></a>
</div>
</div>
</article>
</div>
<div id="noContentMsg" class="no-content">
<i class="fas fa-inbox" style="font-size: 2rem; margin-bottom: 10px; display:block;"></i>
No current content available for this source.
</div>
<div class="pagination" id="paginationControls">
<button class="page-btn" onclick="changePage(-1)" id="prevBtn">< Previous</button>
<span class="page-info" id="pageInfo">Page 1</span>
<button class="page-btn" onclick="changePage(1)" id="nextBtn">Next ></button>
</div>
<footer>
Developed by <a href="https://github.com/merv3guler/cyber-news-feed" style="color:var(--text-main);text-decoration:none;font-weight:bold;">Merve Guler</a>
<span class="heart">🩷</span>
</footer>
</div>
<script>
// --- VARIABLES ---
const cards = Array.from(document.querySelectorAll('.card'));
const itemsPerPage = 9;
let currentPage = 1;
let filteredCards = cards;
// --- 1. THEME TOGGLE ---
const toggleBtn = document.getElementById('themeToggle');
const icon = toggleBtn.querySelector('i');
const body = document.body;
if (localStorage.getItem('theme') === 'light') {
body.classList.add('light-mode');
icon.classList.replace('fa-sun', 'fa-moon');
icon.style.color = "";
}
toggleBtn.addEventListener('click', () => {
body.classList.toggle('light-mode');
if (body.classList.contains('light-mode')) {
icon.classList.replace('fa-sun', 'fa-moon');
icon.style.color = "";
localStorage.setItem('theme', 'light');
} else {
icon.classList.replace('fa-moon', 'fa-sun');
icon.style.color = "#f39c12";
localStorage.setItem('theme', 'dark');
}
});
// --- 2. FILTER LOGIC ---
function applyFilter(criteria) {
document.querySelectorAll('.filter-btn').forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
filteredCards = cards.filter(card => {
const source = card.getAttribute('data-source');
const isZeroDay = card.getAttribute('data-zeroday') === 'true';
if (criteria === 'all') return true;
if (criteria === 'zeroday') return isZeroDay;
if (source === criteria) return true;
return false;
});
// Show/Hide No Content Message
const noContentMsg = document.getElementById('noContentMsg');
const grid = document.getElementById('newsGrid');
if (filteredCards.length === 0) {
noContentMsg.style.display = 'block';
grid.style.display = 'none';
} else {
noContentMsg.style.display = 'none';
grid.style.display = 'flex';
}
currentPage = 1;
renderPagination();
}
// --- 3. PAGINATION LOGIC ---
function renderPagination() {
const totalPages = Math.ceil(filteredCards.length / itemsPerPage);
cards.forEach(card => card.style.display = 'none');
const start = (currentPage - 1) * itemsPerPage;
const end = start + itemsPerPage;
const pageItems = filteredCards.slice(start, end);
pageItems.forEach(card => card.style.display = 'flex');
document.getElementById('pageInfo').innerText = `Page ${currentPage} of ${totalPages || 1}`;
document.getElementById('prevBtn').disabled = currentPage === 1;
document.getElementById('nextBtn').disabled = currentPage >= totalPages;
// Hide pagination if no items or fit in one page
document.getElementById('paginationControls').style.display = (filteredCards.length > 0 && totalPages > 1) ? 'flex' : 'none';
}
function changePage(direction) {
currentPage += direction;
renderPagination();
window.scrollTo(0, 0);
}
// --- 4. EXCEL EXPORT ---
function exportToExcel() {
let csv = "Source,Date,Title,Link,Summary\n";
filteredCards.forEach(card => {
const src = card.getAttribute('data-source');
const date = card.querySelector('.meta span:last-child').innerText.replace('| ', '');
const title = card.querySelector('h2 a').innerText.replace(/,/g, '');
const link = card.querySelector('h2 a').href;
const sum = card.querySelector('.summary').innerText.replace(/\n/g, ' ').replace(/,/g, '');
csv += `${src},${date},${title},${link},"${sum}"\n`;
});
const link = document.createElement("a");
link.href = encodeURI("data:text/csv;charset=utf-8," + csv);
link.download = "cyber_intel_report.csv";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
// Initial render
renderPagination();
</script>
</body>
</html>