-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
402 lines (393 loc) · 14.8 KB
/
Copy pathindex.html
File metadata and controls
402 lines (393 loc) · 14.8 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
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mediaqueries.css" />
</head>
<body>
<nav id="desktop-nav">
<div class="logo">Amro Esseroukh</div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#blogs">Blogs</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo">Amro Esseroukh</div>
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about" onclick="toggleMenu()">About</a></li>
<li><a href="#blogs" onclick="toggleMenu()">Blogs</a></li>
<li><a href="#projects" onclick="toggleMenu()">Projects</a></li>
<li><a href="#contact" onclick="toggleMenu()">Contact</a></li>
</div>
</div>
</nav>
<section id="profile">
<div class="section__pic-container">
<img src="./assets/pdp.png" alt="Amro Esseroukh profile picture" />
</div>
<div class="section__text">
<p class="section__text__p1">Hello, I'm</p>
<h1 class="title">Amro Esseroukh</h1>
<p class="section__text__p2">Offensive Security Researcher</p>
<div class="btn-container">
<button
class="btn btn-color-2"
onclick="window.open('./assets/EN_CV.pdf')"
>
Download CV
</button>
<button class="btn btn-color-1" onclick="location.href='./#contact'">
Contact Info
</button>
</div>
<div id="socials-container">
<img
src="./assets/linkedin.png"
alt="My LinkedIn profile"
class="icon"
onclick="location.href='https://www.linkedin.com/in/amro-esseroukh'"
/>
<img
src="./assets/github.png"
alt="My Github profile"
class="icon"
onclick="location.href='https://github.com/amroes'"
/>
</div>
</div>
</section>
<section id="about">
<p class="section__text__p1">Get To Know More</p>
<h1 class="title">About Me</h1>
<div class="about-details-container">
<div class="about-containers">
<div class="details-container">
<img
src="./assets/education.png"
alt="Education icon"
class="icon"
/>
<h3>Education</h3>
<p>3rd year university student at ESISAR, Valence<br />Expected graduation as a cybersecurity engineer in summer 2026</p>
</div>
</div>
<div class="text-container">
<p>
Passionate Pentester and Red Teamer certified OSEP, OSCP, and CRTO. Particularly interested in
vulnerability research, advanced evasion techniques, and reverse engineering.
</p>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#Blogs'"
/>
<section id="blogs" class="container">
<p class="section__text__p1">Explore My</p>
<h1 class="title">Blogs</h1>
<div class="blogs-container">
<!-- Offsec Journey Section -->
<h2 class="series-title">Offsec Journey</h2>
<div class="details-container">
<div class="blog-entry">
<h3 class="blog-title">
<a href="OSCP-Journey.html">My OSCP Journey</a>
</h3>
<div class="blog-date">October 24, 2024</div>
<div class="blog-description">
This is My First Blog post showcasing my OSCP Journey: From Failing The First Attempt To Passing The Second. It gives a brief overview of the content.
</div>
</div>
<div class="blog-entry">
<h3 class="blog-title">
<a href="OSEP-in-6-Hours-My-Complete-Journey-from-Start-to-Finish.html">My OSEP Journey</a>
</h3>
<div class="blog-date">September 15, 2025</div>
<div class="blog-description">
This is My OSEP journey Blog post showcasing how i dominated the OSEP exam : OSEP in 6 Hours My Complete Journey from Start to Finish.
</div>
</div>
<div class="blog-entry">
<h3 class="blog-title">
<a href="OSWE-in-the-last-4minutes-Complete-Journey-from-Start-to-Finish.html">My OSWE Journey</a>
</h3>
<div class="blog-date">April 25, 2025</div>
<div class="blog-description">
This is My OSWE jounrey Blog post where i give my experience about the course and exam and how i managed to pass in the last 4 minutes.
</div>
</div>
<div class="blog-entry">
<h3 class="blog-title">
<a href="OSED-My-Honest-Review-And-Experience.html">My OSED Journey</a>
</h3>
<div class="blog-date">April 25, 2025</div>
<div class="blog-description">
This is My OSED journey Blog post showcasing how you can pass the most enjoyable exam i have ever done and my humble experience regarding it.
</div>
</div>
</div>
<!-- Series 1: Foundations & First Exploits Section -->
<h2 class="series-title">Series 1: Foundations & First Exploits</h2>
<div class="details-container">
<div class="blog-entry">
<h3 class="blog-title">
<a href="Introduction-to-Exploit-Development-&-x86-architecture.html">Introduction to Exploit Development & x86 architecture</a>
</h3>
<div class="blog-date">March 14, 2025</div>
<div class="blog-description">
This is The First blog of the Windows user-mode exploit development first series. We are going to understand what is exploit development on x86 architecture.
</div>
</div>
<div class="blog-entry">
<h3 class="blog-title">
<a href="WinDbg-101-Essential-Debugging-Techniques-for-Exploit-Dev.html">WinDbg 101 – Essential Debugging Techniques for Exploit Dev</a>
</h3>
<div class="blog-date">March 14, 2025</div>
<div class="blog-description">
This is The second blog of the Windows user-mode exploit development first series. We are going to understand how to manipulate WinDbg since it's our main debugging tool we will be using through this series.
</div>
</div>
<div class="blog-entry">
<h3 class="blog-title">
<a href="Understanding-Stack-Based-Overflows-&-Writing-Your-First-Exploit.html">Understanding Stack-Based Overflows & Writing Your First Exploit</a>
</h3>
<div class="blog-date">March 14, 2025</div>
<div class="blog-description">
This is The third and last blog of the Windows user-mode exploit development first series. Through this blog, we will understand what a Stack-Based overflow is and how to exploit it.
</div>
</div>
</div>
</div>
</section>
<!-- Maldev Research Series -->
<h2 class="series-title">Maldev Research</h2>
<div class="details-container">
<div class="blog-entry">
<h3 class="blog-title">
<a href="How-I-Bypassed-the-Big-Three-Antivirus-Solutions.html">How I Bypassed the Big Three Antivirus Solutions</a>
</h3>
<div class="blog-date">August 05, 2025</div>
<div class="blog-description">
This blog shows the intereseting finding that even most AV vendors can miss simple but effective technique effectively bypassing them.
</div>
</div>
</div>
</div>
</section>
<!-- Existing inline styles for the blogs container -->
<style>
.container {
text-align: center;
padding: 50px 20px;
}
.section-title {
font-size: 2rem;
margin-bottom: 20px;
}
.blogs-container {
display: flex;
justify-content: center;
gap: 20px;
}
.details-container {
background: #f9f9f9;
padding: 20px;
border-radius: 8px;
border: 1px solid #ddd;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: 0.3s ease-in-out;
}
.details-container:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.blog-entry {
text-align: left;
}
.blog-title {
font-size: 22px;
font-weight: bold;
color: #333;
}
.blog-date {
font-size: 14px;
color: #777;
margin-top: 5px;
}
.blog-description {
font-size: 16px;
color: #555;
margin-top: 10px;
}
</style>
<section id="projects">
<p class="section__text__p1">Browse My Recent</p>
<h1 class="title">Projects</h1>
<div class="Blogs-details-container">
<div class="about-containers">
<div class="details-container color-container">
<h2 class="Blogs-sub-title project-title">FlexSheller</h2>
<p class="project-description">
FlexSheller is a versatile tool for generating various types of shellcode in different formats, making it easy to adapt to various use cases. The tool supports modes that allow you to generate the shellcode as MAC addresses, IP addresses, UUIDs, and different encryption formats.
</p>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="location.href='https://github.com/amroes/FlexSheller'"
>
Github
</button>
</div>
</div>
<div class="details-container color-container">
<h2 class="Blogs-sub-title project-title">ByeByeAV</h2>
<p class="project-description">
An Advanced antivirus evasion tool that uses process hollowing on dllhost.exe and XOR encryption to bypass detection. Bypassed Latest versions of Kaspersky, Sophos and Windows Defender.
</p>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="location.href='https://github.com/amroes/byebyeAV'"
>
Github
</button>
</div>
</div>
<div class="details-container color-container">
<h2 class="Blogs-sub-title project-title">LogMyBrowser</h2>
<p class="project-description">
Advanced hooking tool for monitoring browser interactions on sensitive pages, designed to help security professionals and red teams uncover sensitive informations from credentials to credit card informations.
</p>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="location.href='https://github.com/amroes/LogMyBrowser'"
>
Github
</button>
</div>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#contact'"
/>
</section>
<section id="contact">
<p class="section__text__p1">Get in Touch</p>
<h1 class="title">Contact Me</h1>
<div class="contact-info-upper-container">
<div class="contact-info-container">
<img
src="./assets/email.png"
alt="Email icon"
class="icon contact-icon email-icon"
/>
<p><a href="mailto:amroesseroukh012@gmail.com">amroesseroukh012@gmail.com</a></p>
</div>
<div class="contact-info-container">
<img
src="./assets/linkedin.png"
alt="LinkedIn icon"
class="icon contact-icon"
/>
<p><a href="https://www.linkedin.com/in/amro-esseroukh">LinkedIn</a></p>
</div>
</div>
</section>
<footer>
<nav>
<div class="nav-links-container">
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#blogs">Blogs</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<p>
Copyright © 2023 Amro Esseroukh.
All Rights Reserved.
</p>
</footer>
<script src="script.js"></script>
<!-- Dark Theme Overrides (Added at the end) -->
<style>
/* Overall background and text color */
body {
background-color: #121212 !important;
color: #ffffff !important;
}
/* Navbars */
#desktop-nav, #hamburger-nav, footer nav {
background-color: #1e1e1e !important;
}
#desktop-nav .logo, #hamburger-nav .logo,
#desktop-nav .nav-links li a, #hamburger-nav .nav-links li a,
footer .nav-links li a {
color: #ffffff !important;
}
/* Section backgrounds */
section, footer {
background-color: #121212 !important;
}
/* Details containers (blogs/projects) */
.details-container {
background: #1e1e1e !important;
border: 1px solid #333 !important;
}
.details-container:hover {
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1) !important;
}
/* Text within details */
.blog-title a {
color: #fff !important;
}
.blog-date {
color: #ccc !important;
}
.blog-description {
color: #ddd !important;
}
.project-description {
color: #ddd !important;
}
/* Buttons */
.btn-color-1, .btn-color-2 {
background-color: #333 !important;
color: #fff !important;
border: 1px solid #555 !important;
}
.btn-color-1:hover, .btn-color-2:hover {
background-color: #444 !important;
}
/* Links inside content (e.g., email, LinkedIn) */
a {
color: #86c0ee !important;
}
a:hover {
color: #aad4ff !important;
}
</style>
</body>
</html>