-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
64 lines (58 loc) · 2.24 KB
/
project.html
File metadata and controls
64 lines (58 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projects – SOC Analyst Portfolio</title>
<link
href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,700;1,700&family=Inter:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="navbar">
<div class="nav-content">
<h1 class="logo">SOC Analyst</h1>
<nav>
<a href="index.html" class="nav-link">Home</a>
<a href="project.html" class="nav-link active">Projects</a>
<a href="tools.html" class="nav-link">Tools</a>
<a href="certs.html" class="nav-link">Certificate</a>
<a href="contact.html" class="nav-link">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero-section">
<h2>Projects</h2>
<p>Snapshots of Blue Team challenges, BTLO assignments, and SOC case studies.</p>
</section>
<!-- Existing cards grid -->
<section class="content-grid">
<div class="card">
<h3>BTLO – ThePackage</h3>
<p>Recovered deleted files and extracted flags using forensic tools</p>
<iframe src="assets/pdfs/Employee_of_the_Year_Report.pdf.pdf" title="Employee of the Year Report"></iframe>
</div>
<div class="card">
<h3>BTLO – TheParanoid</h3>
<p>Traced brute-force, enumeration, and privilege escalation (CVE-2021-3156) attack flow with key security insights.</p>
<iframe src="assets/pdfs/Paranoid_Report.pdf.pdf" title="Paranoid Report"></iframe>
</div>
<div class="card">
<h3>BTLO – Shiba Insider Case</h3>
<p>Analyzed Shiba Insider BTLO challenge to uncover attacker using PCAP and steganography.</p>
<iframe src="assets/pdfs/converted_text (1).pdf" title="Shiba Insider Case Report"></iframe>
</div>
<div class="card">
<h3> </h3>
<p>Explored MITRE D3FEND techniques and tools for cyber defense.</p>
<iframe src="assets/pdfs/Report.pdf" title=" D3FEND Investigation"></iframe>
</div>
</section>
<footer>
<p>© 2025 SOC Analyst | Crafted with passion</p>
</footer>
</body>
</html>