-
Notifications
You must be signed in to change notification settings - Fork 0
/
hacking.html
62 lines (60 loc) · 3.07 KB
/
hacking.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Harishguna Satgunarajah</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="index.html">Harish</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="hacking.html">Hacking</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Accomplishments</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Notes</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron bg-dark text-white border border-light border-right-0 border-left-0 border-bottom-0">
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-6">
<h1 class="display-4">Hacking</h1>
<p class="lead">I am an aspiring security researcher, currently focusing on trying to learn more core skills before I can get started with real world research. I am interested in kernel exploit development, malware analysis, and embedded security.</p>
</div>
</div>
</div>
<div class="container font-weight-light my-5">
<!--<h2 class="font-weight-normal">Interests</h2>-->
<p class="lead">
I try to approach my learning from a variety of avenues.
</p>
<h4>Writeups</h4>
<p>I like to do wargames and CTFs to practically test my hacking knowledge. Though CTFs are not a representation of real world hacking, I consider it to be adequate practice until I am suitable for real bug hunting and vulnerability research. I'm also getting into crackmes now to learn about reverse engineering and maybe malware analysis.</p>
<h4>Projects</h4>
<p>I work on various low level projects such as tiny operating systems as well as many embedded systems projects, to solidify my understanding of how things work (and break).</p>
<h4>Books</h4>
<p>Though books may not be the most hands on approach to learning hacking, I believe that a rigorous theoretical foundation helps with understanding internals and methodologies a little better.</p>
</div>
</body>
</html>