-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
755 lines (663 loc) · 24.1 KB
/
index.html
File metadata and controls
755 lines (663 loc) · 24.1 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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Research Archive</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Syne:wght@600;700&display=swap" rel="stylesheet">
<style>
:root {
--deep-blue: #0a0e27;
--slate: #1a1f3a;
--electric: #00d9ff;
--amber: #ffb627;
--red-alert: #ff3864;
--ice: #e8f4f8;
--purple: #a78bfa;
/* TLP Official Colors */
--tlp-red: #FF2B2B;
--tlp-amber: #FFC000;
--tlp-green: #33FF00;
--tlp-clear: #FFFFFF;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'JetBrains Mono', monospace;
background: var(--deep-blue);
color: var(--ice);
line-height: 1.6;
min-height: 100vh;
position: relative;
overflow-x: hidden;
}
/* Animated scanning lines background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(180deg, transparent 0%, var(--slate) 50%, transparent 100%);
background-size: 100% 200px;
animation: scan 8s linear infinite;
opacity: 0.15;
pointer-events: none;
z-index: 1;
}
/* Hexagonal pattern overlay */
body::after {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
radial-gradient(circle at 25% 25%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
radial-gradient(circle at 75% 75%, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
pointer-events: none;
z-index: 1;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 3rem 2rem;
position: relative;
z-index: 2;
}
/* Terminal-style header */
header {
margin-bottom: 2rem; /* Reduced from 4rem */
opacity: 0;
animation: glitchIn 0.6s ease forwards;
position: relative;
}
.terminal-bar {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1.5rem;
font-size: 0.75rem;
color: var(--electric);
opacity: 0;
animation: fadeIn 0.4s ease forwards 0.3s;
}
.terminal-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--red-alert);
}
.terminal-dot:nth-child(2) { background: var(--amber); }
.terminal-dot:nth-child(3) { background: var(--electric); }
h1 {
font-family: 'Syne', sans-serif;
font-size: 5rem;
font-weight: 700;
letter-spacing: -0.04em;
margin-bottom: 0.5rem;
color: var(--ice);
line-height: 1;
text-transform: uppercase;
position: relative;
}
h1::after {
content: '_';
color: var(--electric);
animation: blink 1s infinite;
}
.subtitle {
font-size: 0.85rem;
color: var(--electric);
letter-spacing: 0.3em;
text-transform: uppercase;
font-weight: 400;
margin-bottom: 0; /* Remove bottom margin from subtitle */
}
.status-bar {
display: flex;
gap: 2rem;
margin: 0.5rem 0 2rem 0; /* Reduced from 2rem/3rem to 0.5rem/2rem */
font-size: 0.8rem;
opacity: 0;
animation: slideUp 0.6s ease forwards 0.5s;
}
.status-item span {
color: rgba(232, 244, 248, 0.8); /* White/ice color instead of electric cyan */
}
.status-item {
display: flex;
align-items: center;
gap: 0.5rem;
}
.status-indicator {
width: 8px;
height: 8px;
background: var(--electric);
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}
.intro {
font-size: 1.05rem;
margin-bottom: 4rem;
max-width: 720px;
color: rgba(232, 244, 248, 0.85);
line-height: 1.8;
opacity: 0;
animation: fadeIn 0.8s ease forwards 0.7s;
border-left: 2px solid var(--electric);
padding-left: 1.5rem;
}
.project-card {
background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(26, 31, 58, 0.3) 100%);
border: 1px solid rgba(0, 217, 255, 0.2);
padding: 1.5rem; /* Reduced from 2rem */
position: relative;
overflow: hidden;
opacity: 0;
animation: slideUp 0.5s ease forwards;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}
.projects-grid {
display: grid;
gap: 1rem; /* Reduced from 1.5rem */
margin-bottom: 4rem;
}
.project-description {
line-height: 1.6; /* Reduced from 1.8 */
margin-bottom: 1.5rem; /* Reduced from 2rem */
color: rgba(232, 244, 248, 0.85);
max-width: 65ch;
font-size: 0.9rem; /* Slightly smaller text */
}
/* Hide extended content initially */
.project-extended {
opacity: 0;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
}
.project-card:hover .project-extended {
opacity: 1;
max-height: 200px;
}
/* Make key phrases pop */
.project-description b {
color: var(--electric); /* Highlight important terms */
font-weight: 600;
}
.project-card:nth-child(1) { animation-delay: 0.8s; }
.project-card:nth-child(2) { animation-delay: 0.9s; }
.project-card:nth-child(3) { animation-delay: 1s; }
.project-card:nth-child(4) { animation-delay: 1.1s; }
.project-card:nth-child(5) { animation-delay: 1.2s; }
/* Corner brackets effect */
.project-card::before,
.project-card::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
border: 2px solid var(--electric);
transition: all 0.3s ease;
}
.project-card::before {
top: 0;
left: 0;
border-right: none;
border-bottom: none;
}
.project-card::after {
bottom: 0;
right: 0;
border-left: none;
border-top: none;
}
.project-card:hover {
border-color: var(--electric);
background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(26, 31, 58, 0.5) 100%);
transform: translateY(-4px);
}
.project-card:hover::before,
.project-card:hover::after {
width: 40px;
height: 40px;
}
.project-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1rem;
}
/* TLP Labels */
.tlp-label {
font-size: 0.7rem;
padding: 0.3rem 0.6rem;
background: #000000;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 600;
border: 1px solid;
}
.tlp-red {
color: var(--tlp-red);
border-color: var(--tlp-red);
box-shadow: 0 0 10px rgba(255, 43, 43, 0.3);
}
.tlp-amber {
color: var(--tlp-amber);
border-color: var(--tlp-amber);
box-shadow: 0 0 10px rgba(255, 192, 0, 0.3);
}
.tlp-green {
color: var(--tlp-green);
border-color: var(--tlp-green);
box-shadow: 0 0 10px rgba(51, 255, 0, 0.3);
}
.tlp-clear {
color: var(--tlp-clear);
border-color: var(--tlp-clear);
box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.project-title {
font-family: 'Syne', sans-serif;
font-size: 1.8rem;
font-weight: 600;
color: var(--ice);
letter-spacing: -0.02em;
margin-bottom: 0.5rem;
}
.project-id {
font-size: 0.75rem;
color: var(--electric);
opacity: 0.7;
letter-spacing: 0.15em;
}
.project-description {
font-size: 0.95rem;
color: rgba(232, 244, 248, 0.75);
margin-bottom: 1.5rem;
line-height: 1.7;
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin-bottom: 1.5rem;
}
.tag {
font-size: 0.7rem;
padding: 0.4rem 0.8rem;
background: rgba(167, 139, 250, 0.1);
border: 1px solid rgba(167, 139, 250, 0.3);
color: var(--purple);
letter-spacing: 0.05em;
text-transform: uppercase;
font-weight: 600;
}
.project-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 1rem;
border-top: 1px solid rgba(0, 217, 255, 0.1);
}
.project-link {
font-size: 0.85rem;
color: var(--electric);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 600;
}
.project-link:hover {
gap: 0.9rem;
color: var(--ice);
}
.project-link::before {
content: '>';
color: var(--electric);
}
.project-date {
font-size: 0.75rem;
color: rgba(232, 244, 248, 0.5);
letter-spacing: 0.1em;
}
/* Show More Button */
.show-more-container {
text-align: center;
margin: 3rem 0 4rem 0;
opacity: 0;
animation: fadeIn 0.8s ease forwards 1.2s;
}
.show-more-btn {
background: rgba(26, 31, 58, 0.6);
border: 1px solid rgba(0, 217, 255, 0.3);
color: var(--electric);
padding: 0.8rem 2rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.1em;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 600;
position: relative;
overflow: hidden;
}
.show-more-btn:hover {
background: rgba(26, 31, 58, 0.8);
border-color: var(--electric);
transform: translateY(-2px);
}
.show-more-btn::after {
content: '▼';
margin-left: 0.5rem;
transition: transform 0.3s ease;
display: inline-block;
}
.show-more-btn.expanded::after {
transform: rotate(180deg);
}
/* Additional Projects Section */
.additional-projects {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease;
}
.additional-projects.expanded {
max-height: 3000px;
}
.additional-projects .project-card {
opacity: 0;
transform: translateY(20px);
animation: none;
}
.additional-projects.expanded .project-card {
animation: slideUp 0.5s ease forwards;
}
.additional-projects.expanded .project-card:nth-child(1) { animation-delay: 0.1s; }
.additional-projects.expanded .project-card:nth-child(2) { animation-delay: 0.2s; }
.additional-projects.expanded .project-card:nth-child(3) { animation-delay: 0.3s; }
footer {
text-align: center;
padding: 3rem 0;
font-size: 0.8rem;
color: rgba(232, 244, 248, 0.5);
opacity: 0;
animation: fadeIn 0.8s ease forwards 1.4s;
border-top: 1px solid rgba(0, 217, 255, 0.1);
}
.contact-links {
display: flex;
justify-content: center;
gap: 3rem;
margin-top: 1.5rem;
}
.contact-links a {
color: var(--electric);
text-decoration: none;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.15em;
font-size: 0.75rem;
font-weight: 600;
}
.contact-links a:hover {
color: var(--ice);
text-shadow: 0 0 10px var(--electric);
}
@keyframes scan {
0% { transform: translateY(-100%); }
100% { transform: translateY(100vh); }
}
@keyframes glitchIn {
0% {
opacity: 0;
transform: translateX(-10px);
filter: blur(4px);
}
100% {
opacity: 1;
transform: translateX(0);
filter: blur(0);
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes blink {
0%, 49% { opacity: 1; }
50%, 100% { opacity: 0; }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
@media (max-width: 768px) {
h1 {
font-size: 3rem;
}
.project-title {
font-size: 1.4rem;
}
.project-footer {
flex-direction: column;
gap: 1rem;
align-items: flex-start;
}
.contact-links {
flex-direction: column;
gap: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="terminal-bar">
<span class="terminal-dot"></span>
<span class="terminal-dot"></span>
<span class="terminal-dot"></span>
<span>~/projects</span>
</div>
<h1>ARCHIVE</h1>
<p class="subtitle">Engineering solutions for operational security problems</p>
</header>
<!-- <p class="intro">
Each project originated from a real operational need.
</p> -->
<div class="status-bar">
<div class="status-item">
<span>LAST UPDATE: 2024.02.16</span>
</div>
</div>
<div class="projects-grid">
<article class="project-card">
<div class="project-header">
<div>
<!-- <div class="project-id"></div> -->
<h2 class="project-title">Detection Engineering Assistant (MCP-Based)</h2>
</div>
<span class="tlp-label tlp-amber">TLP:AMBER</span>
</div>
<p class="project-description">
Extended an open MCP server to analyze internal SIEM detections alongside public rule sets, enabling automated MITRE ATT&CK coverage tracking and gap analysis.
</p>
<div class="project-tags">
<span class="tag">Detection Engineering</span>
<span class="tag">MCP</span>
</div>
<div class="project-footer">
<a href="projects/detection-engineering-assistant-mcp-based.html" class="project-link">Details</a>
<span class="project-date">2026.02</span>
</div>
</article>
<article class="project-card">
<div class="project-header">
<div>
<!-- <div class="project-id"></div> -->
<h2 class="project-title">ML-Based Registration Abuse Detection</h2>
</div>
<span class="tlp-label tlp-amber">TLP:AMBER</span>
</div>
<p class="project-description">
ML-based scoring engine identifying bot-driven account registrations via structural pattern analysis. 92% accuracy, deployed for real-time fraud reduction.
</p>
<div class="project-tags">
<span class="tag">Machine Learning</span>
<span class="tag">Anti Fraud</span>
</div>
<div class="project-footer">
<a href="projects/ml-classifier-hunting-down-bot-email-addresses.html" class="project-link" target="_blank">Details</a>
<span class="project-date">2025.11</span>
</div>
</article>
<article class="project-card">
<div class="project-header">
<div>
<!-- <div class="project-id"></div> -->
<h2 class="project-title">Syscall-Based Runtime Detection & AI Enrichment</h2>
</div>
<span class="tlp-label tlp-clear">TLP:CLEAR</span>
</div>
<p class="project-description">
<p class="project-description">
Falco-based runtime detection stack converting syscall alerts into enriched, investigation-ready insights through AI-assisted analysis.
</p>
</p>
<div class="project-tags">
<span class="tag">Terraform</span>
<span class="tag">Kubernetes</span>
<span class="tag">Falco</span>
<span class="tag">Tetragon</span>
<span class="tag">AI</span>
</div>
<div class="project-footer">
<a href="https://github.com/code2319/gcp-falco-google-adk" class="project-link" target="_blank">Repository</a>
<span class="project-date">2025.06</span>
</div>
</article>
</div>
<!-- Show More Button -->
<div class="show-more-container">
<button class="show-more-btn" id="showMoreBtn" onclick="toggleProjects()">
Show More Projects (0)
</button>
</div>
<!-- Additional Projects (Hidden by default) -->
<div class="additional-projects" id="additionalProjects">
<div class="projects-grid">
<!-- Add more projects here when you have them -->
<!-- Example: Copy a project-card from above and paste here -->
<article class="project-card">
<div class="project-header">
<div>
<!-- <div class="project-id"></div> -->
<h2 class="project-title">CI/CD Automation for SIEM Applications</h2>
</div>
<span class="tlp-label tlp-clear">TLP:CLEAR</span>
</div>
<p class="project-description">
Built a fully automated CI/CD pipeline for SIEM applications delivery. Eliminated manual packaging and testing , reduced deployment time from hours to minutes.
</p>
<div class="project-tags">
<span class="tag">CI/CD</span>
<span class="tag">SIEM Engineering</span>
<span class="tag">Automation</span>
</div>
<div class="project-footer">
<a href="projects/ci-cd-automation-for-siem-applications.html" class="project-link" target="_blank">Details</a>
<span class="project-date">2025.04</span>
</div>
</article>
</div>
</div>
<footer>
<p>// SECURE COMMUNICATIONS ONLY</p>
<div class="contact-links">
<a href="https://github.com/code2319">GitHub</a>
<!-- <a href="#">Responsible Disclosure</a> -->
</div>
</footer>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Count main projects (only the first projects-grid, not the one inside additionalProjects)
const mainProjectsGrid = document.querySelector('.projects-grid');
const mainProjects = mainProjectsGrid.querySelectorAll('.project-card');
// Count additional (hidden) projects - THIS WAS MISSING
const additionalProjects = document.querySelectorAll('#additionalProjects .project-card');
// Auto-number all projects
const allProjectCards = document.querySelectorAll('.project-card');
allProjectCards.forEach((card, index) => {
const projectId = card.querySelector('.project-id');
if (projectId) {
const projectNumber = String(index + 1).padStart(3, '0');
projectId.textContent = `PROJECT-${projectNumber}`;
}
});
// Update "Show More" button with additional project count
const showMoreBtn = document.getElementById('showMoreBtn');
if (additionalProjects.length > 0) {
showMoreBtn.textContent = `Show More Projects (${additionalProjects.length})`;
showMoreBtn.style.display = 'inline-block';
} else {
showMoreBtn.style.display = 'none';
}
// Get last update date from most recent project
const allProjectDates = document.querySelectorAll('.project-date');
let latestDate = '2024.01.01';
allProjectDates.forEach(dateEl => {
const dateText = dateEl.textContent.trim();
if (dateText > latestDate) {
latestDate = dateText;
}
});
// Update status bar with latest date
const statusItems = document.querySelectorAll('.status-item');
if (statusItems.length >= 1) {
const dateSpan = statusItems[0].querySelector('span');
if (dateSpan) {
dateSpan.textContent = `LAST UPDATE: ${latestDate}`;
}
}
});
function toggleProjects() {
const additionalProjects = document.getElementById('additionalProjects');
const btn = document.getElementById('showMoreBtn');
const additionalProjectCount = document.querySelectorAll('#additionalProjects .project-card').length;
additionalProjects.classList.toggle('expanded');
btn.classList.toggle('expanded');
if (additionalProjects.classList.contains('expanded')) {
btn.textContent = 'Show Less';
} else {
btn.textContent = `Show More Projects (${additionalProjectCount})`;
}
}
</script>
</body>
</html>