-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (70 loc) · 2.18 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/pico.min.css">
<style>
.gridcontainer {
display: grid;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.div1 { grid-area: 1 / 1 / 2 / 4; }
.div2 { grid-area: 1 / 4 / 2 / 11;}
</style>
<title>oh wow, Title.</title>
</head>
<body>
<main class="container">
<article >
<header>
<nav >
<ul>
<li><a href="https://nottitoh.github.io/#" class="secondary">home</a></li>
</ul>
<ul>
<li><strong>notTitoH</strong></li>
</ul>
</nav>
</header>
<div class="gridcontainer">
<div class="div1">
<aside>
<nav>
<ul>
<li><a href="#">Linkedin</a></li>
</ul>
</nav>
</aside>
</div>
<div class="div2">
<p>
<h6>About me</h6>
Hello, I'm notTitoH. <br />
I'm an average SOC analyst who likes Ubuntu, Raspberry Pi, Post and/or Math rock, Nachos & Tacos, Shwarma & Pizza together with dark lager or roasted malt.
I also like going to the beach.
<h6> What do you do?</h6>
By day, I help my colleagues panic when there's a Priority 1 Incident. <br />
But most of the time I try not to get alert fatigue from the Security Incidents.
<h6>How did you became a SOC analyst?</h6>
Learned the hard way. Read a lot. Do reasearch. Learn from my amazing colleagues, lovely Chapter Leads and Role Models. <br />
I also learn from from other CyberSecurity Professionals and Organizations from their blog or vlog posts. <br />
(like @struppigel, @LiveOverflow, @ghidraninja, @MalwareTechBlog, @sansforensics and many more!)
<h6> What tools do you use?</h6>
<ul>
<li>
Anything that works for me. Usually tools that's in Remnux and/or SIFT. VMs of course, and an old Dell 7000 series Laptop for test machine.<br/>
Also, whatever vendor my employer have (EDRs, IPS, WAF, etc).
</li>
</ul>
</p>
</div>
</div>
<!-- <footer class="code">wut</footer>-->
</article>
</main>
</body>
</html>