-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
202 lines (201 loc) · 14.5 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
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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="scripts/css/index.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Home | stuub.dev</title>
<!-- Standard favicons -->
<link rel="icon" href="img/favicon-16x16.png" type="image/x-icon">
<link rel="icon" href="img/favicon-32x32.png" type="image/x-icon">
<!-- Apple favicons -->
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<!-- Android favicons -->
<link rel="manifest" href="img/site.webmanifest">
<link rel="icon" href="img/android-chrome-192x192.png" type="image/png">
<link rel="icon" href="img/android-chrome-512x512.png" type="image/png">
<meta name="description" content="Welcome to stuub.dev. developed by stuub. A portfolio to allow you to view my Cyber Security projects and experience as a current undergraduate student, working at my University while taking on many of my own projects!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/pace-js@latest/pace.min.js" integrity="sha384-k6YtvFUEIuEFBdrLKJ3YAUbBki333tj1CSUisai5Cswsg9wcLNaPzsTHDswp4Az8" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pace-js@latest/pace-theme-default.min.css" integrity="sha384-xvqXMkoz8L8OVqOHKYybaviax9zlz95ilnS/K/ct3ps6gpHEbfrXIXXRNujuprry" crossorigin="anonymous">
<link rel="stylesheet" href="scripts/css/minimal.css">
</head>
<body class="">
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand" href="index.html">stuub.dev</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="projectsDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Projects </a>
<div class="dropdown-menu" aria-labelledby="projectsDropdown" style="background-color: #191924;">
<a class="dropdown-item" href="reconnai.html">ReconnAI</a>
<a class="dropdown-item" href="cert.html">Northumbria Certificate Helper</a>
<a class="dropdown-item" href="https://github.com/Stuub/CVE-2024-4040-SSTI-LFI-PoC">Crushed | Exploiting Arbitrary File Read in CrushFTP</a>
<a class="dropdown-item" href="https://github.com/Stuub/RCity-CVE-2024-27198"> RCity | Exploiting RCE in JetBrains TeamCity</a>
<a class="dropdown-item" href="https://github.com/Stuub/CVE-2024-31848-PoC">See Data | Exploiting File Path Traversal in CData Jetty servers</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<div class="ml-auto">
<button class="btn btn-secondary my-2 my-sm-0 mt-auto" id="darkModeToggle">Dark Mode</button>
</div>
</nav>
<main>
<div class="jumbotron d-flex flex-column align-items-center justify-content-center">
<div class="lines">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div class="text-center">
<h1 class="display-3">/home</h1>
</div>
<div class="text-center">
<p class="lead">Welcome! This website serves as a portfolio to present my projects, old and new.</p>
</div>
</div>
<div class="container mt-5" data-aos="fade-up" style="--gap: 32; --blur: 20; --spread: 80; --direction: row;">
<div class="row justify-content-center">
<div class="col-sm-4" style="--active: 1; --start: 0;">
<div class="plswork">
<div class="card mx-auto" style="overflow: hidden;">
<div class="glows"></div>
<img src="img/reconai_splash.png" class="card-img-top" alt="Project Image">
<div class="card-body">
<h5 class="card-title">ReconnAI</h5>
<p class="card-text">Integrating AI with Reconnaissance in Penetration Testing.</p>
<a href="reconnai.html" class="btn btn-primary">See More</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="plswork">
<div class="card mx-auto">
<div class="glows"></div>
<img src="img/crushed_etc_passwd-fotor-20240425234815.png" class="card-img-top" alt="Project Image">
<div class="card-body">
<h5 class="card-title">Exploiting CrushFTP CVE-2024-4040</h5>
<p class="card-text">A Proof of Concept script to automate the exploitation of vulnerable instances of CrushFTP</p>
<a href="https://github.com/Stuub/CVE-2024-4040-SSTI-LFI-PoC" class="btn btn-primary">See More</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="plswork">
<div class="card mx-auto">
<div class="glows"></div>
<img src="img/rcity.png" class="card-img-top" alt="Project Image">
<div class="card-body">
<h5 class="card-title">RCity - Exploiting JetBrains Teamcity</h5>
<p class="card-text">A Proof of Concept to automate the exploitation of CVE-2024-27198. Auth Bypass, RCE, Admin Generation + more!</p>
<a href="https://github.com/Stuub/RCity-CVE-2024-27198" class="btn btn-primary">See More</a>
</div>
</div>
</div>
</div>
</div>
<div class="about my-5 p-5 rounded" data-aos="fade-up" data-aos-duration="700">
<h1 class="display-4">$whoami</h1>
<div class="card-section">
<div class="card-container">
<div class="card" data-aos="fade-up-right" data-aos-duration="1000">
<h2 class="h4">Introduction</h2>
<p class="lead">Greetings! I'm Stuart Beck, a dedicated and enthusiastic Cyber Security student at Northumbria University, currently navigating my way through the challenges of my third year. I am driven by a profound passion for Cyber Security, a journey that began at the age of 13 and has kept me relentlessly curious ever since.</p>
</div>
<div class="card" data-aos="fade-up-left" data-aos-duration="1000">
<h2 class="h4">What Drives Me</h2>
<p class="lead"> What fuels this passion is the constant pursuit of knowledge and the fulfillment derived from exploring the intricacies of the Cyber Security landscape. I am always on the lookout for new learning opportunities, eager to stay ahead in this ever-evolving field.</p>
</div>
<div class="card" data-aos="fade-up-right" data-aos-duration="1000">
<h2 class="h4">Current Projects</h2>
<p class="lead">At present, I am engaged in two exciting projects that reflect my commitment to pushing boundaries. The first, ReconnAI, is a cutting-edge venture that intertwines AI with Reconnaissance, enhancing the effectiveness of Penetration Testing. The second, Developing PoC's for recent CVE's. A very fun task!</p>
</div>
<div class="card" data-aos="fade-up-left" data-aos-duration="1000">
<h2 class="h4">What's Next?</h2>
<p class="lead">I am fervently working towards leaving a lasting impact on the Cyber Security industry, fueled by my love for exploration and dedication to innovation. My latest endeavours took me into the world of physical security, Lockpicking, SDR & Creating my own RubberDucky USB's are just to name a few! Thank you for joining me on this exciting journey!</p>
</div>
</div>
</div>
</div>
<div class="experience-section">
<div class="experience my-5 p-5 rounded" data-aos="fade-up" data-aos-duration="700">
<h1 class="display-4">Experience</h1>
<h2 class="h4">The Road Travelled</h2>
</div>
</div>
<div class="timeline">
<div class="container left" data-aos="fade-right" data-aos-duration="700" data-aos-easing="ease-in-sine">
<div class="content">
<h2>2019</h2>
<p>- Graduated New College Durham with Triple Distinction * in Cyber Security & Computer Networking</p>
<p>- Studying Cyber Security & Computer Networking at Northumbria University - Awarded Rutherford Academic Excellence Scholarship</p>
</div>
</div>
<div class="container right" data-aos="fade-left" data-aos-duration="700" data-aos-easing="ease-in-sine">
<div class="content">
<h2>2020</h2>
<p>Attained Cisco CCNA1</p>
</div>
</div>
<div class="container left" data-aos="fade-right" data-aos-duration="700" data-aos-easing="ease-in-sine">
<div class="content">
<h2>2022</h2>
<p>Started freelance Web Development - Multiple live developments | HTML, CSS, JavaScript</p>
</div>
</div>
<div class="container right" data-aos="fade-left" data-aos-duration="700" data-aos-easing="ease-in-sine">
<div class="content">
<h2>2023</h2>
<p>- Attained Cisco CCNA2</p>
<p>- 3rd place at HTB University CTF - Sheffield Uni</p>
<p>- Started working at Northumbria University - Team Lead @ Cyber Clinic</p>
<p>- Started working on ReconnAI</p>
<p>- Certificate Helper developed and implemented for Northumbria</p>
</div>
</div>
<div class="container left" data-aos="fade-right" data-aos-duration="700" data-aos-easing="ease-in-sine">
<div class="content">
<h2>2024</h2>
<p>- HTB Brains & Bytes CTF @ Northumbria - Top 20%</p>
<p>- Ranked Top 5% Globally on TryHackMe</p>
<p>- Conference Paper Published - ReconnAI</p>
<p>- Presented ReconnAI in several Demos!</p>
<p>- Started Bug Bounty Hunting!</p>
<p>- Published TeamCity PoC</p>
<p>- Published CrushFTP PoC</p>
<p>- Published CData PoC</p>
<p>- Placed into the <u><a href="https://www.siemens.com/global/en/products/services/cert/hall-of-thanks.html" style="color: inherit; text-decoration: none;">Siemens Hall of Thanks</a></u> for VDP submissions!</p>
<p>- Started working at <u><a href="https://flare.io" style="color: inherit; text-decoration: none;">Flare!</a></u></p>
</div>
</div>
</div>
</div>
</main>
<footer class="footer mt-auto py-3" style="bottom: 0; width: 100%;">
<div class="container">
<span class="text-muted">stuub.dev | Penetration Tester | OffSec | Public Speaker | Tinkerer</span>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js" integrity="sha384-n1AULnKdMJlK1oQCLNDL9qZsDgXtH6jRYFCpBtWFc+a9Yve0KSoMn575rk755NJZ" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" integrity="sha384-/rJKQnzOkEo+daG0jMjU1IwwY9unxt1NBw3Ef2fmOJ3PW/TfAg2KXVoWwMZQZtw9" crossorigin="anonymous">
<script>
AOS.init();
</script>
<script src="scripts/js/main.js" defer></script>
</body>
</html>