-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1164 lines (1013 loc) · 31.8 KB
/
index.html
File metadata and controls
1164 lines (1013 loc) · 31.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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>Dev Malvryx - Elite Cybersecurity Engineer | Ethical Hacker | Penetration Tester</title>
<meta name="title" content="Dev Malvryx - Elite Cybersecurity Engineer | Ethical Hacker | Penetration Tester">
<meta name="description" content="Professional cybersecurity engineer and ethical hacker specializing in offensive security, penetration testing, web exploitation, network security, and advanced threat detection. Expert in Python, Linux, OSINT, and security automation.">
<meta name="keywords" content="hacker, ethical hacker, cybersecurity engineer, penetration tester, offensive security, bug bounty hunter, security researcher, web security, network hacking, cyber security expert, infosec, white hat hacker, OSINT specialist, malware analyst, security consultant, vulnerability assessment, exploit development, red team, blue team, CTF player, security automation, Python hacker, Linux security, penetration testing services, cyber defense, threat intelligence">
<meta name="author" content="Dev Malvryx">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<!-- Favicon - Multiple formats for browser compatibility -->
<link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='75' font-size='75'>🔐</text></svg>">
<link rel="icon" type="image/png" sizes="32x32" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='75' font-size='75'>🔐</text></svg>">
<link rel="icon" type="image/png" sizes="16x16" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='75' font-size='75'>🔐</text></svg>">
<link rel="apple-touch-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='75' font-size='75'>🔐</text></svg>">
<link rel="shortcut icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='75' font-size='75'>🔐</text></svg>">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://malvryx.dev">
<meta property="og:site_name" content="Dev Malvryx - Cybersecurity Engineer">
<meta property="og:title" content="Dev Malvryx - Elite Cybersecurity Engineer | Ethical Hacker">
<meta property="og:description" content="Professional ethical hacker & cybersecurity engineer specializing in offensive security, penetration testing, and advanced threat detection. Expert in Python, Linux, OSINT & security automation.">
<meta property="og:image" content="https://malvryx.dev/og-image.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Dev Malvryx - Cybersecurity Engineer Portfolio">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://malvryx.dev">
<meta name="twitter:title" content="Dev Malvryx - Elite Cybersecurity Engineer | Ethical Hacker">
<meta name="twitter:description" content="Professional ethical hacker & cybersecurity engineer specializing in offensive security, penetration testing, and advanced threat detection.">
<meta name="twitter:image" content="https://malvryx.dev/og-image.jpg">
<!-- WhatsApp specific -->
<meta property="og:image:type" content="image/jpeg">
<meta property="og:locale" content="en_US">
<!-- Canonical URL -->
<link rel="canonical" href="https://malvryx.dev">
<!-- Theme -->
<meta name="theme-color" content="#00ff00">
<meta name="msapplication-TileColor" content="#000000">
<!-- Structured Data (JSON-LD) for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Dev Malvryx",
"jobTitle": "Cybersecurity Engineer & Ethical Hacker",
"description": "Professional cybersecurity engineer specializing in offensive security, penetration testing, ethical hacking, and security automation",
"url": "https://malvryx.dev",
"image": "https://malvryx.dev/og-image.jpg",
"sameAs": [
"https://github.com/dev-malvryx"
],
"knowsAbout": [
"Cybersecurity",
"Ethical Hacking",
"Penetration Testing",
"Offensive Security",
"Web Security",
"Network Security",
"Python Programming",
"Linux Administration",
"OSINT",
"Security Automation",
"Malware Analysis",
"Vulnerability Assessment"
],
"hasOccupation": {
"@type": "Occupation",
"name": "Cybersecurity Engineer",
"occupationLocation": {
"@type": "Place",
"name": "Remote"
}
}
}
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-green: #00ff00;
--dark-green: #00aa00;
--bg-black: #000000;
--terminal-bg: #0a0a0a;
--glass-bg: rgba(0, 255, 0, 0.05);
--glass-border: rgba(0, 255, 0, 0.2);
}
body {
font-family: 'Courier New', monospace;
background: var(--bg-black);
color: var(--primary-green);
overflow-x: hidden;
line-height: 1.6;
}
html {
scroll-behavior: smooth;
}
/* Matrix Rain Background */
#matrix {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.15;
}
/* Scan Lines Effect */
.scanlines {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
background: repeating-linear-gradient(
0deg,
rgba(0, 255, 0, 0.03),
rgba(0, 255, 0, 0.03) 1px,
transparent 1px,
transparent 2px
);
z-index: 1000;
animation: flicker 0.15s infinite;
}
@keyframes flicker {
0%, 100% { opacity: 0.9; }
50% { opacity: 0.95; }
}
/* Boot Splash Screen */
#boot-splash {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: var(--bg-black);
z-index: 10000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 2rem;
transition: opacity 0.5s ease-out;
}
#boot-splash.hidden {
opacity: 0;
pointer-events: none;
}
.boot-logo {
font-size: 3rem;
font-weight: bold;
margin-bottom: 2rem;
text-shadow: 0 0 10px var(--primary-green), 0 0 20px var(--primary-green);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--primary-green); }
50% { opacity: 0.8; text-shadow: 0 0 20px var(--primary-green), 0 0 30px var(--primary-green); }
}
#boot-text {
font-size: 0.9rem;
text-align: left;
max-width: 600px;
width: 100%;
}
.boot-line {
margin: 0.3rem 0;
opacity: 0;
animation: fadeIn 0.3s forwards;
}
@keyframes fadeIn {
to { opacity: 1; }
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
padding: 1rem 5%;
background: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--glass-border);
z-index: 9000;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
font-size: 1.3rem;
font-weight: bold;
color: var(--primary-green);
text-shadow: 0 0 10px var(--primary-green);
}
.nav-links a {
color: var(--primary-green);
text-decoration: none;
margin-left: 2rem;
transition: all 0.3s;
position: relative;
}
.nav-links a::before {
content: '> ';
opacity: 0;
transition: opacity 0.3s;
}
.nav-links a:hover::before {
opacity: 1;
}
.nav-links a:hover {
text-shadow: 0 0 10px var(--primary-green);
}
/* Sections */
section {
min-height: 100vh;
padding: 120px 5% 80px;
position: relative;
}
/* Hero Section */
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.hero-title {
font-size: 3.5rem;
font-weight: bold;
margin-bottom: 1rem;
text-shadow: 0 0 20px var(--primary-green);
animation: glitch 3s infinite;
}
@keyframes glitch {
0%, 90%, 100% { transform: translate(0); }
91% { transform: translate(-2px, -2px); }
93% { transform: translate(2px, 2px); }
95% { transform: translate(-1px, 1px); }
}
.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.terminal-prompt {
display: inline-block;
margin-right: 0.5rem;
color: var(--primary-green);
}
.typing-text {
border-right: 2px solid var(--primary-green);
padding-right: 5px;
animation: blink 1s infinite;
}
@keyframes blink {
0%, 50% { border-color: var(--primary-green); }
51%, 100% { border-color: transparent; }
}
.cta-buttons {
margin-top: 2rem;
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.btn {
padding: 0.8rem 2rem;
background: transparent;
color: var(--primary-green);
border: 2px solid var(--primary-green);
cursor: pointer;
font-family: 'Courier New', monospace;
font-size: 1rem;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn:hover {
background: var(--primary-green);
color: var(--bg-black);
box-shadow: 0 0 20px var(--primary-green);
transform: translateY(-2px);
}
/* Terminal Box */
.terminal-box {
background: var(--terminal-bg);
border: 1px solid var(--glass-border);
border-radius: 8px;
padding: 1.5rem;
margin: 2rem 0;
box-shadow: 0 0 30px rgba(0, 255, 0, 0.1);
position: relative;
}
.terminal-header {
display: flex;
align-items: center;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--glass-border);
}
.terminal-dots {
display: flex;
gap: 0.5rem;
}
.dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--primary-green);
opacity: 0.6;
}
.terminal-title {
margin-left: 1rem;
font-size: 0.9rem;
opacity: 0.7;
}
.terminal-content {
font-size: 0.95rem;
line-height: 1.8;
}
/* Skills Grid */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-top: 2rem;
}
.skill-category {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
border-radius: 8px;
padding: 1.5rem;
transition: all 0.3s;
}
.skill-category:hover {
border-color: var(--primary-green);
box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
transform: translateY(-5px);
}
.skill-category h3 {
margin-bottom: 1rem;
font-size: 1.2rem;
color: var(--primary-green);
}
.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.skill-tag {
padding: 0.4rem 0.8rem;
background: rgba(0, 255, 0, 0.1);
border: 1px solid var(--glass-border);
border-radius: 4px;
font-size: 0.85rem;
transition: all 0.3s;
}
.skill-tag:hover {
background: var(--primary-green);
color: var(--bg-black);
}
/* Experience Timeline */
.timeline {
position: relative;
padding-left: 3rem;
margin-top: 2rem;
}
.timeline::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 2px;
background: var(--glass-border);
}
.timeline-item {
position: relative;
margin-bottom: 3rem;
}
.timeline-item::before {
content: '';
position: absolute;
left: -3.4rem;
top: 0;
width: 12px;
height: 12px;
background: var(--primary-green);
border-radius: 50%;
box-shadow: 0 0 10px var(--primary-green);
}
.timeline-year {
color: var(--primary-green);
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.timeline-content h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}
.timeline-content p {
opacity: 0.8;
line-height: 1.8;
}
/* Projects Grid */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.project-card {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
border-radius: 8px;
padding: 2rem;
transition: all 0.3s;
cursor: pointer;
}
.project-card:hover {
border-color: var(--primary-green);
box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
transform: translateY(-10px);
}
.project-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.project-card h3 {
font-size: 1.4rem;
margin-bottom: 1rem;
color: var(--primary-green);
}
.project-card p {
opacity: 0.8;
margin-bottom: 1rem;
line-height: 1.6;
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1rem;
}
.project-tag {
padding: 0.3rem 0.7rem;
background: rgba(0, 255, 0, 0.1);
border: 1px solid var(--glass-border);
border-radius: 4px;
font-size: 0.8rem;
}
/* Contact Section */
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.contact-card {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
border-radius: 8px;
padding: 2rem;
text-align: center;
transition: all 0.3s;
}
.contact-card:hover {
border-color: var(--primary-green);
box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
transform: translateY(-5px);
}
.contact-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.contact-card h3 {
margin-bottom: 0.5rem;
color: var(--primary-green);
}
.contact-card a {
color: var(--primary-green);
text-decoration: none;
word-break: break-all;
}
.contact-card a:hover {
text-shadow: 0 0 10px var(--primary-green);
}
/* Footer */
footer {
text-align: center;
padding: 2rem;
border-top: 1px solid var(--glass-border);
opacity: 0.7;
}
/* Section Headers */
.section-header {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary-green);
text-shadow: 0 0 20px var(--primary-green);
}
.section-subtitle {
opacity: 0.8;
margin-bottom: 2rem;
font-size: 1.1rem;
}
/* Responsive */
@media (max-width: 768px) {
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1.2rem;
}
.section-header {
font-size: 2rem;
}
nav {
flex-direction: column;
gap: 1rem;
}
.nav-links a {
margin-left: 1rem;
}
.timeline {
padding-left: 2rem;
}
.cta-buttons {
flex-direction: column;
}
}
/* Accessibility */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
</style>
</head>
<body>
<!-- Scan Lines Effect -->
<div class="scanlines"></div>
<!-- Matrix Rain -->
<canvas id="matrix"></canvas>
<!-- Boot Splash -->
<div id="boot-splash">
<div class="boot-logo">◈ DEV_MALVRYX ◈</div>
<div id="boot-text"></div>
</div>
<!-- Navigation -->
<nav>
<div class="nav-logo">DEV_MALVRYX:~$</div>
<div class="nav-links">
<a href="#about">about</a>
<a href="#skills">skills</a>
<a href="#experience">experience</a>
<a href="#projects">projects</a>
<a href="#contact">contact</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<h1 class="hero-title">DEV MALVRYX</h1>
<div class="hero-subtitle">
<span class="terminal-prompt">root@malvryx:~$</span>
<span class="typing-text" id="typing-text"></span>
</div>
<p style="max-width: 700px; font-size: 1.1rem; opacity: 0.9; margin-top: 1rem;">
Elite cybersecurity engineer specializing in offensive security, penetration testing, and intelligent threat detection. I don't just find vulnerabilities—I think like an adversary to build unbreakable systems.
</p>
<div class="cta-buttons">
<a href="#projects" class="btn">View Projects</a>
<a href="#contact" class="btn">Hire Me</a>
</div>
</section>
<!-- About Section -->
<section id="about">
<h2 class="section-header">[ABOUT]</h2>
<p class="section-subtitle">System Profile & Mission Statement</p>
<div class="terminal-box">
<div class="terminal-header">
<div class="terminal-dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<div class="terminal-title">malvryx@terminal:~$</div>
</div>
<div class="terminal-content">
<p><span style="color: #00ff00;">malvryx@security</span>:<span style="color: #0088ff;">~</span>$ whoami</p>
<p style="margin-top: 1rem;">
I am a cybersecurity engineer who operates at the intersection of offensive security and intelligent system design. My approach is adversarial by nature—I engineer like a builder but think like an attacker.
</p>
<p style="margin-top: 1rem;">
Every system I touch is stress-tested against the most sophisticated threat models. I don't just patch vulnerabilities; I anticipate attack vectors before they materialize. My code is written with one principle: assume compromise, design for resilience.
</p>
<p style="margin-top: 1rem;">
<span style="color: #00ff00;">→</span> Offensive Security Specialist<br>
<span style="color: #00ff00;">→</span> Penetration Testing Expert<br>
<span style="color: #00ff00;">→</span> Full-Stack Security Engineer<br>
<span style="color: #00ff00;">→</span> Automation & AI Systems Developer
</p>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<h2 class="section-header">[CORE_EXPERTISE]</h2>
<p class="section-subtitle">Technical Arsenal & Specializations</p>
<div class="skills-grid">
<div class="skill-category">
<h3>⚔️ Offensive Security</h3>
<div class="skill-tags">
<span class="skill-tag">Penetration Testing</span>
<span class="skill-tag">Exploit Development</span>
<span class="skill-tag">Web App Hacking</span>
<span class="skill-tag">Network Exploitation</span>
<span class="skill-tag">Social Engineering</span>
<span class="skill-tag">Red Teaming</span>
</div>
</div>
<div class="skill-category">
<h3>🔍 Security Research</h3>
<div class="skill-tags">
<span class="skill-tag">OSINT</span>
<span class="skill-tag">Threat Intelligence</span>
<span class="skill-tag">Malware Analysis</span>
<span class="skill-tag">Reverse Engineering</span>
<span class="skill-tag">Vulnerability Research</span>
<span class="skill-tag">CTF Competitor</span>
</div>
</div>
<div class="skill-category">
<h3>💻 Development</h3>
<div class="skill-tags">
<span class="skill-tag">Python</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">Bash Scripting</span>
<span class="skill-tag">C/C++</span>
<span class="skill-tag">Go</span>
<span class="skill-tag">PowerShell</span>
</div>
</div>
<div class="skill-category">
<h3>🛠️ Tools & Frameworks</h3>
<div class="skill-tags">
<span class="skill-tag">Metasploit</span>
<span class="skill-tag">Burp Suite</span>
<span class="skill-tag">Nmap</span>
<span class="skill-tag">Wireshark</span>
<span class="skill-tag">SQLMap</span>
<span class="skill-tag">Cobalt Strike</span>
</div>
</div>
<div class="skill-category">
<h3>🐧 Systems</h3>
<div class="skill-tags">
<span class="skill-tag">Linux/Unix</span>
<span class="skill-tag">Kali Linux</span>
<span class="skill-tag">Parrot OS</span>
<span class="skill-tag">Windows Security</span>
<span class="skill-tag">Cloud Security</span>
<span class="skill-tag">Docker</span>
</div>
</div>
<div class="skill-category">
<h3>🤖 Automation & AI</h3>
<div class="skill-tags">
<span class="skill-tag">Security Automation</span>
<span class="skill-tag">Bot Development</span>
<span class="skill-tag">AI/ML Security</span>
<span class="skill-tag">API Integration</span>
<span class="skill-tag">DevSecOps</span>
<span class="skill-tag">CI/CD Security</span>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience">
<h2 class="section-header">[EXPERIENCE]</h2>
<p class="section-subtitle">Professional Journey & Achievements</p>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">[2024 - Present]</div>
<div class="timeline-content">
<h3>Senior Cybersecurity Engineer</h3>
<p>
Leading offensive security operations and penetration testing engagements for enterprise clients. Developed custom exploit frameworks and automated security assessment tools that reduced testing time by 60% while increasing vulnerability detection rates.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">[2023 - 2024]</div>
<div class="timeline-content">
<h3>Security Researcher & Bug Bounty Hunter</h3>
<p>
Discovered and responsibly disclosed critical vulnerabilities in major platforms. Achieved recognition on multiple Hall of Fame programs. Specialized in web application security, API exploitation, and authentication bypass techniques.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">[2022 - 2023]</div>
<div class="timeline-content">
<h3>Full-Stack Security Developer</h3>
<p>
Built secure web applications with security-first architecture. Implemented automated security testing pipelines and developed internal security tools for vulnerability scanning and threat detection.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">[2020 - 2022]</div>
<div class="timeline-content">
<h3>Ethical Hacking & Penetration Testing</h3>
<p>
Conducted comprehensive security assessments including network penetration testing, web application security testing, and social engineering engagements. Delivered detailed reports with actionable remediation strategies.
</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects">
<h2 class="section-header">[PROJECTS]</h2>
<p class="section-subtitle">Selected Security Projects & Research</p>
<div class="projects-grid">
<div class="project-card">
<div class="project-icon">🛡️</div>
<h3>Advanced Penetration Testing Framework</h3>
<p>
Custom-built automated penetration testing framework combining reconnaissance, vulnerability scanning, and exploitation capabilities. Integrates AI for intelligent attack path identification.
</p>
<div class="project-tags">
<span class="project-tag">Python</span>
<span class="project-tag">Machine Learning</span>
<span class="project-tag">Automation</span>
</div>
</div>
<div class="project-card">
<div class="project-icon">🔓</div>
<h3>Web Exploitation Suite</h3>
<p>
Comprehensive toolkit for web application security testing. Includes modules for XSS, SQLi, CSRF, authentication bypass, and file upload vulnerabilities with automated exploitation chains.
</p>
<div class="project-tags">
<span class="project-tag">JavaScript</span>
<span class="project-tag">Python</span>
<span class="project-tag">Web Security</span>
</div>
</div>
<div class="project-card">
<div class="project-icon">🕵️</div>
<h3>OSINT Intelligence Platform</h3>
<p>
Advanced open-source intelligence gathering framework with automated data correlation, threat actor profiling, and real-time monitoring capabilities for security research and investigations.
</p>
<div class="project-tags">
<span class="project-tag">OSINT</span>
<span class="project-tag">API Integration</span>
<span class="project-tag">Data Analysis</span>
</div>
</div>
<div class="project-card">
<div class="project-icon">⚙️</div>
<h3>Security Automation Engine</h3>
<p>
Enterprise-grade security automation platform for continuous vulnerability assessment, threat detection, and incident response. Integrates with major SIEM and ticketing systems.
</p>
<div class="project-tags">
<span class="project-tag">DevSecOps</span>
<span class="project-tag">CI/CD</span>
<span class="project-tag">Cloud Security</span>
</div>
</div>
<div class="project-card">
<div class="project-icon">🎯</div>
<h3>Red Team Toolkit</h3>
<p>
Collection of custom tools and scripts for red team operations including persistence mechanisms, privilege escalation exploits, lateral movement techniques, and post-exploitation frameworks.
</p>
<div class="project-tags">
<span class="project-tag">Red Teaming</span>
<span class="project-tag">C/C++</span>
<span class="project-tag">PowerShell</span>
</div>
</div>
<div class="project-card">
<div class="project-icon">🤖</div>
<h3>AI-Powered Threat Detection</h3>
<p>
Machine learning system for anomaly detection and threat classification. Uses deep learning to identify zero-day attacks and advanced persistent threats in real-time network traffic.
</p>
<div class="project-tags">
<span class="project-tag">AI/ML</span>
<span class="project-tag">TensorFlow</span>
<span class="project-tag">Network Security</span>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<h2 class="section-header">[CONTACT]</h2>
<p class="section-subtitle">Establish Secure Connection</p>
<div class="contact-grid">
<div class="contact-card">
<div class="contact-icon">📧</div>
<h3>Email</h3>
<a href="mailto:contact@malvryx.dev">contact@malvryx.dev</a>
</div>
<div class="contact-card">
<div class="contact-icon">💬</div>
<h3>WhatsApp</h3>
<a href="https://wa.me/2349130815781">+234 913 081 5781</a>
</div>
<div class="contact-card">
<div class="contact-icon">🐙</div>
<h3>GitHub</h3>
<a href="https://github.com/dev-malvryx" target="_blank">github.com/dev-malvryx</a>
</div>
<div class="contact-card">
<div class="contact-icon">💼</div>
<h3>LinkedIn</h3>
<a href="https://linkedin.com/in/dev-malvryx" target="_blank">linkedin.com/in/dev-malvryx</a>
</div>
</div>
<div class="terminal-box" style="margin-top: 3rem;">
<div class="terminal-header">
<div class="terminal-dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<div class="terminal-title">secure-message.sh</div>
</div>
<div class="terminal-content">
<p style="opacity: 0.9;">
<span style="color: #00ff00;">[INFO]</span> All communication channels are monitored for security.<br>
<span style="color: #00ff00;">[INFO]</span> PGP keys available upon request for encrypted correspondence.<br>
<span style="color: #00ff00;">[INFO]</span> Available for consulting, penetration testing, and security audits.<br>
<span style="color: #00ff00;">[INFO]</span> Response time: < 24 hours<br>
<span style="color: #ffaa00;">[READY]</span> Waiting for your message...
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2026 Dev Malvryx | Engineered with precision | All systems operational</p>
<p style="margin-top: 0.5rem; font-size: 0.9rem;">
[root@malvryx ~]# Securing the digital frontier, one vulnerability at a time
</p>
</footer>
<script>
// Matrix Rain Effect
const matrixCanvas = document.getElementById('matrix');
const ctx = matrixCanvas.getContext('2d');
matrixCanvas.width = window.innerWidth;
matrixCanvas.height = window.innerHeight;
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%^&*()_+-=[]{}|;:,.<>?/~`';
const fontSize = 14;
const columns = matrixCanvas.width / fontSize;
const drops = Array(Math.floor(columns)).fill(1);
function drawMatrix() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';