-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.78 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<title>Nuno Sabino - Home</title>
</head>
<body>
<header class="site-header">
<nav class="site-nav">
<span class="site-name mono">nuno@sabino ~ $</span>
<div class="nav-links">
<a href="#" class="nav-active">Home</a>
<a href="research.html">Research</a>
<a href="ctf.html">Capture-the-flag Competitions</a>
</div>
</nav>
</header>
<main class="container">
<div class="profile-photo-frame" aria-label="Nuno Sabino"></div>
<h1 class="page-title">Nuno Sabino</h1>
<p class="subtitle">
PhD in Computer Science · Carnegie Mellon University<br>
<span class="mono">fuzzing / symbolic execution / web / cryptography</span>
</p>
<section class="bio-section">
<h2>Overview</h2>
<p>In my doctoral degree at Carnegie Mellon University and Instituto Superior Tecnico, I specialized in fuzzing, a technique for discovering software vulnerabilities by generating malformed or unexpected inputs and feeding them to programs. My goal is to increase the security of software by developing automated tools for vulnerability detection.</p>
</section>
</main>
<footer class="site-footer">
<nav>
<a href="#" class="nav-active">Home</a>
<a href="research.html">Research</a>
<a href="ctf.html">Capture-the-flag Competitions</a>
</nav>
</footer>
</body>
</html>