-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1029 lines (984 loc) · 48.2 KB
/
index.html
File metadata and controls
1029 lines (984 loc) · 48.2 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" />
<!-- ===================== UNICONS ===================== -->
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<!-- ===================== CSS ===================== -->
<link rel="stylesheet" href="src/css/style.css" />
<link rel="stylesheet" href="src/css/projects-styles.css" />
<title>RCGA Prods</title>
<link rel="icon" type="image/png" href="src/assets/img/icon.png" />
<!-- ===================== META ===================== -->
<meta
name="keywords"
content="RCGA Prods, Cybersecurity, Security, BlueTeam, Projects, Resume"
/>
<meta name="description" content="RCGA Prods Cybersecurity Website" />
<meta name="author" content="Carlos García" />
<meta
name="copyright"
content="© 2024 RCGA Prods All rights reserved"
/>
<!-- ===================== Open Graph Meta Tags ===================== -->
<meta property="og:title" content="RCGA Prods" />
<meta
property="og:description"
content="Junior Cybersecurity Analyst and Multimedia Editor with expertise in Web Development and 3D
Production, and I have recently transitioned to a career in
Cybersecurity, a field that has consistently piqued my interest."
/>
<meta property="og:url" content="https://rcgaprods.github.io/" />
<meta
property="og:image"
content="https://rcgaprods.github.io/preview.webp"
/>
<meta property="og:type" content="website" />
<!-- ===================== COOKIES ===================== -->
<link href="src/css/cookies.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- ===================== HEADER ===================== -->
<header class="header no-select" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">RCGA Prods</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list grid">
<li class="nav__item">
<a href="#home" class="nav__link active-link">
<i class="uil uil-estate nav__icon"></i>Home
</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">
<i class="uil uil-user nav__icon"></i>About Me
</a>
</li>
<!-- Move 'Projects' section below 'Experience' once I have more experience -->
<li class="nav__item">
<a href="#projects" class="nav__link">
<i class="uil uil-folder-open nav__icon"></i>Projects
</a>
</li>
<li class="nav__item">
<a href="#experience" class="nav__link">
<i class="uil uil-briefcase-alt nav__icon"></i>Experience
</a>
</li>
<!-- Write-ups
<li class="nav__item">
<a href="blog/index.html" class="nav__link">
<i class="uil uil-award nav__icon"></i>Blog
</a>
</li>
-->
<li class="nav__item">
<a href="#certificates" class="nav__link">
<i class="uil uil-award nav__icon"></i>Certificates
</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">
<i class="uil uil-envelope nav__icon"></i>Contact me
</a>
</li>
</ul>
<i class="uil uil-times nav__close" id="nav-close"></i>
</div>
<div class="nav__btns">
<!-- Theme change button -->
<i class="uil uil-moon change-theme" id="theme-button"></i>
<div class="nav__toggle" id="nav-toggle">
<i class="uil uil-apps"></i>
</div>
</div>
</nav>
</header>
<!-- Modal -->
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close no-select">×</span>
<h1 class="no-select">HackTheBox Academy</h1>
<h3 class="no-select">Student ID:</h3>
<p id="copy1" class="textToCopy">HTB-8717656FEC</p>
<span class="hideCopiedText no-select" id="copyText1"
>Copied to clipboard!
</span>
</div>
</div>
<!-- ===================== MAIN ===================== -->
<main class="main">
<!-- ===================== HOME ===================== -->
<section class="home section no-select" id="home">
<div class="home__container container grid">
<div class="home__content grid">
<div class="home__social">
<!-- Github -->
<a
href="https://github.com/RCGAProds"
target="_blank"
aria-label="Github"
class="home__social-icon tooltip"
>
<span class="tooltiptext">Github</span>
<i class="uil uil-github-alt"></i>
</a>
<!-- HackTheBox -->
<a
href="#"
aria-label="HackTheBox"
class="home__social-icon openModalLink tooltip"
>
<span class="tooltiptext">HackTheBox</span>
<i class="uil uil-cube"></i>
</a>
<!-- TryHackMe -->
<a
href="https://tryhackme.com/p/RCGAProds"
target="_blank"
aria-label="TryHackMe"
class="home__social-icon tooltip"
>
<span class="tooltiptext">TryHackMe</span>
<svg
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>TryHackMe</title>
<path
d="M10.705 0C7.54 0 4.902 2.285 4.349 5.291a4.525 4.525 0 0 0-4.107 4.5 4.525 4.525 0 0 0 4.52 4.52h6.761a.625.625 0 1 0 0-1.25H4.761a3.273 3.273 0 0 1-3.27-3.27A3.273 3.273 0 0 1 6.59 7.08a.625.625 0 0 0 .7-1.035 4.488 4.488 0 0 0-1.68-.69 5.223 5.223 0 0 1 5.096-4.104 5.221 5.221 0 0 1 5.174 4.57 4.489 4.489 0 0 0-.488.305.625.625 0 1 0 .731 1.013 3.245 3.245 0 0 1 1.912-.616 3.278 3.278 0 0 1 3.203 2.61.625.625 0 0 0 1.225-.251 4.533 4.533 0 0 0-4.428-3.61 4.54 4.54 0 0 0-.958.105C16.556 2.328 13.9 0 10.705 0zm5.192 10.64a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.054.514c0 .181.018.353.054.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .309-.296c.08-.124.137-.267.173-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.309-.291.917.917 0 0 0-.46-.108zm6.486 0a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.053.514c0 .181.017.353.053.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .31-.296c.078-.124.136-.267.172-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.308-.291.916.916 0 0 0-.461-.108zm-8.537.068l-.84.618.313.43.476-.368v1.877h.603v-2.557zm6.486 0l-.841.618.314.43.477-.368v1.877h.603v-2.557zm-4.435.445c.08 0 .143.028.193.084.05.057.087.127.114.21.026.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.028.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.248.248 0 0 1-.195-.086.584.584 0 0 1-.118-.209 1.245 1.245 0 0 1-.056-.27 2.645 2.645 0 0 1 0-.533c.01-.096.029-.186.056-.27a.583.583 0 0 1 .118-.209.25.25 0 0 1 .195-.084zm6.486 0c.08 0 .144.028.193.084.05.057.087.127.114.21.027.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.027.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.249.249 0 0 1-.195-.086.581.581 0 0 1-.117-.209 1.245 1.245 0 0 1-.056-.27 2.642 2.642 0 0 1 0-.533c.01-.096.028-.186.056-.27a.58.58 0 0 1 .117-.209.25.25 0 0 1 .195-.084zm-2.191 3.51a.93.93 0 0 0-.463.109.908.908 0 0 0-.312.291c-.08.122-.139.263-.175.426a2.383 2.383 0 0 0-.054.514c0 .18.018.353.054.516.036.164.094.308.175.432a.91.91 0 0 0 .312.296.92.92 0 0 0 .463.11c.18 0 .333-.037.46-.11a.892.892 0 0 0 .308-.296 1.32 1.32 0 0 0 .174-.432c.036-.163.054-.335.054-.516 0-.18-.018-.352-.054-.514a1.274 1.274 0 0 0-.174-.426.89.89 0 0 0-.309-.291.918.918 0 0 0-.46-.108zm-6.402.07l-.841.617.314.43.476-.369v1.878h.604v-2.557zm2.125 0l-.841.617.314.43.477-.369v1.878h.603v-2.557zm2.116 0l-.84.617.313.43.477-.369v1.878h.603v-2.557zm2.16.443c.08 0 .144.028.194.085a.605.605 0 0 1 .114.21c.026.083.044.172.053.269a2.639 2.639 0 0 1 0 .532 1.28 1.28 0 0 1-.053.27.585.585 0 0 1-.114.21.244.244 0 0 1-.193.085.25.25 0 0 1-.196-.085.589.589 0 0 1-.117-.21 1.245 1.245 0 0 1-.056-.27 2.597 2.597 0 0 1 0-.532c.01-.097.028-.186.056-.27a.589.589 0 0 1 .117-.209.249.249 0 0 1 .196-.085zm-6.729 3.073a.676.676 0 0 0-.335.078.661.661 0 0 0-.227.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.93.93 0 0 0 .127.313.65.65 0 0 0 .227.215c.092.053.204.08.335.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .225-.215c.057-.09.1-.194.125-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.931.931 0 0 0-.125-.31.658.658 0 0 0-.225-.21.667.667 0 0 0-.334-.08zm3.086 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.907.907 0 0 0-.127.31 1.69 1.69 0 0 0-.04.373c0 .131.013.256.04.375a.928.928 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.752 1.752 0 0 0 0-.748.94.94 0 0 0-.126-.31.657.657 0 0 0-.224-.21.667.667 0 0 0-.334-.08zm5.108 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.931.931 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08.13 0 .243-.027.334-.08a.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.943.943 0 0 0-.126-.31.657.657 0 0 0-.224-.21.668.668 0 0 0-.334-.08zm-6.658.05l-.61.448.227.311.346-.266v1.362h.438v-1.856zm3.068 0l-.61.448.227.311.346-.266v1.362h.438v-1.856zm5.108 0l-.611.448.228.311.346-.266v1.362h.438v-1.856zm-9.712.322c.058 0 .105.02.14.062a.421.421 0 0 1 .083.151.96.96 0 0 1 .04.196 1.932 1.932 0 0 1 0 .386.954.954 0 0 1-.04.197.421.421 0 0 1-.083.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.427.427 0 0 1-.085-.153.887.887 0 0 1-.041-.197 1.96 1.96 0 0 1 0-.386.893.893 0 0 1 .04-.196.42.42 0 0 1 .086-.151.181.181 0 0 1 .141-.062zm3.086 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.94.94 0 0 1 .04.196 1.906 1.906 0 0 1 0 .386.93.93 0 0 1-.04.197.421.421 0 0 1-.082.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.42.42 0 0 1-.086-.153.846.846 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.849.849 0 0 1 .041-.196.42.42 0 0 1 .086-.151.182.182 0 0 1 .141-.062zm5.108 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.92.92 0 0 1 .04.196 1.963 1.963 0 0 1 0 .386.943.943 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.061.18.18 0 0 1-.142-.06.437.437 0 0 1-.085-.153.95.95 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.959.959 0 0 1 .04-.196.47.47 0 0 1 .086-.151.181.181 0 0 1 .142-.062zm-1.684 1.814a.675.675 0 0 0-.336.079.66.66 0 0 0-.227.21.91.91 0 0 0-.127.31 1.731 1.731 0 0 0 0 .748.939.939 0 0 0 .127.314c.059.09.134.162.227.215.093.053.205.08.336.08a.66.66 0 0 0 .334-.08.648.648 0 0 0 .224-.215c.058-.09.1-.195.126-.314a1.737 1.737 0 0 0-.001-.747.928.928 0 0 0-.125-.31.65.65 0 0 0-.224-.211.668.668 0 0 0-.334-.079zm3.063 0a.676.676 0 0 0-.336.079.664.664 0 0 0-.227.21.906.906 0 0 0-.127.31 1.74 1.74 0 0 0 0 .748.936.936 0 0 0 .127.314.66.66 0 0 0 .227.215c.092.053.204.08.336.08a.654.654 0 0 0 .334-.08.648.648 0 0 0 .223-.215c.058-.09.1-.195.126-.314a1.74 1.74 0 0 0 0-.747.928.928 0 0 0-.126-.31.65.65 0 0 0-.223-.211.666.666 0 0 0-.334-.079zm-1.545.05l-.611.448.228.312.346-.267v1.363h.438v-1.856zm-1.518.323c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.91.91 0 0 1 .04.195 1.966 1.966 0 0 1 0 .387.951.951 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.06.18.18 0 0 1-.142-.06.428.428 0 0 1-.085-.152.914.914 0 0 1-.04-.197 1.96 1.96 0 0 1-.011-.195c0-.058.003-.122.01-.192a.923.923 0 0 1 .041-.195c.02-.06.048-.11.085-.152a.181.181 0 0 1 .142-.061zm3.063 0c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.94.94 0 0 1 .04.195 1.91 1.91 0 0 1 0 .387.93.93 0 0 1-.04.197.422.422 0 0 1-.083.152.175.175 0 0 1-.14.06.18.18 0 0 1-.141-.06.423.423 0 0 1-.085-.152.907.907 0 0 1-.04-.197 1.95 1.95 0 0 1 0-.387.915.915 0 0 1 .04-.195c.02-.06.048-.11.085-.152a.182.182 0 0 1 .142-.061zm-9.713.185a.465.465 0 0 0-.232.055.456.456 0 0 0-.157.146.627.627 0 0 0-.089.215 1.168 1.168 0 0 0-.027.259c0 .09.009.177.027.26a.648.648 0 0 0 .089.216c.04.063.093.112.157.149a.459.459 0 0 0 .232.056c.09 0 .168-.02.231-.056a.45.45 0 0 0 .156-.149.67.67 0 0 0 .087-.217 1.218 1.218 0 0 0 0-.518.647.647 0 0 0-.087-.215.448.448 0 0 0-.156-.146.458.458 0 0 0-.23-.055zm1.052.035l-.423.31.158.217.24-.185v.944h.303v-1.286zm-1.052.224c.04 0 .073.014.097.042a.284.284 0 0 1 .057.105.69.69 0 0 1 .028.136c.004.049.007.092.007.133 0 .04-.003.086-.007.135a.684.684 0 0 1-.028.136.285.285 0 0 1-.057.105.123.123 0 0 1-.097.043.125.125 0 0 1-.098-.043.298.298 0 0 1-.059-.105.612.612 0 0 1-.028-.136 1.39 1.39 0 0 1 0-.268.62.62 0 0 1 .028-.136.297.297 0 0 1 .06-.105.125.125 0 0 1 .097-.042zm3.775 1.394a.463.463 0 0 0-.232.054.452.452 0 0 0-.157.146.621.621 0 0 0-.088.214 1.19 1.19 0 0 0 0 .519.641.641 0 0 0 .088.217.46.46 0 0 0 .157.15.458.458 0 0 0 .232.054.454.454 0 0 0 .232-.055.45.45 0 0 0 .155-.149.664.664 0 0 0 .087-.217 1.189 1.189 0 0 0 0-.519.642.642 0 0 0-.087-.214.446.446 0 0 0-.155-.146.459.459 0 0 0-.232-.054zm1.052.034l-.423.31.158.216.24-.185v.945h.303V22.68zm-1.052.223c.04 0 .073.014.098.043a.3.3 0 0 1 .057.105.643.643 0 0 1 .027.135 1.31 1.31 0 0 1 0 .268.654.654 0 0 1-.027.137.307.307 0 0 1-.057.105.124.124 0 0 1-.098.042.125.125 0 0 1-.098-.042.293.293 0 0 1-.059-.105.618.618 0 0 1-.028-.137 1.364 1.364 0 0 1 0-.268.612.612 0 0 1 .028-.135.287.287 0 0 1 .06-.105.123.123 0 0 1 .097-.043z"
stroke-width="0.5"
/>
</svg>
</a>
<!-- Linkedin -->
<a
href="https://www.linkedin.com/in/rcgaprods/"
target="_blank"
aria-label="Linkedin"
class="home__social-icon tooltip"
>
<span class="tooltiptext">Linkedin</span>
<i class="uil uil-linkedin"></i>
</a>
<!-- Credly -->
<a
href="https://www.credly.com/users/rcgaprods"
target="_blank"
aria-label="Credly"
class="home__social-icon tooltip"
>
<span class="tooltiptext">Credly</span>
<i class="uil uil-award"></i>
</a>
</div>
<div class="home__img">
<img src="src/assets/img/Model.webp" alt="Profile Image" />
</div>
<div class="home__data">
<h1 class="home__title">Hi, I am Carlos</h1>
<h3 class="home__subtitle">Cybersecurity Analyst</h3>
<p class="home__description">
Threat Hunting, Malware Analysis & more!
</p>
<!-- Certifications Thumbnails -->
<div class="home__certs" aria-label="Certifications">
<a
href="https://www.credly.com/badges/7150fd61-1d49-406c-a885-b33acab2c1c3/public_url"
target="_blank"
rel="noopener"
class="cert-thumb"
title="CCST - Cisco Certified Support Technician (Oct 2025)"
aria-label="CCST Certificate"
>
<img
src="src/assets/img/badges/CCST.webp"
alt="CCST badge"
loading="lazy"
/>
</a>
<a
href="https://www.credly.com/badges/041c7cfd-41d2-4804-a5d9-8248e5bfa129/public_url"
target="_blank"
rel="noopener"
class="cert-thumb"
title="IT Specialist - Cybersecurity (Nov 2025)"
aria-label="IT Specialist Certificate"
>
<img
src="src/assets/img/badges/IT Specialist - Cybersecurity.webp"
alt="IT Specialist badge"
loading="lazy"
/>
</a>
</div>
<!-- /Certifications Thumbnails -->
<a
href="#contact"
class="button button--flex"
id="contact__button"
>
Contact Me
<i class="uil uil-message button__icon"></i>
</a>
</div>
</div>
<div class="home__scroll">
<a href="#about" class="home__scroll-button button--flex">
<i class="uil uil-mouse-alt home__scroll-mouse"></i>
<span class="home__scroll-name">Scroll Down</span>
<i class="uil uil-arrow-down home__scroll-arrow"></i>
</a>
</div>
</div>
</section>
<!-- ===================== ABOUT ===================== -->
<section class="about section" id="about">
<div class="section__title no-select">
<h1 class="section__title_1">About Me</h1>
<h2 class="section__title_2">About Me</h2>
<p class="about__title">
<span class="hl__cyber">Cybersecurity</span>
and
<span class="hl__ai">Artificial Intelligence</span>
are my passions
</p>
</div>
<div class="about__container container grid">
<div class="about__img no-select">
<svg
class="about__blob"
viewBox="0 0 200 187"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<mask id="mask0" mask-type="alpha">
<path
d="M190.312 36.4879C206.582 62.1187 201.309 102.826 182.328 134.186C163.346 165.547
130.807 187.559 100.226 186.353C69.6454 185.297 41.0228 161.023 21.7403 129.362C2.45775
97.8511 -7.48481 59.1033 6.67581 34.5279C20.9871 10.1032 59.7028 -0.149132 97.9666
0.00163737C136.23 0.303176 174.193 10.857 190.312 36.4879Z"
/>
</mask>
<g mask="url(#mask0)">
<path
d="M190.312 36.4879C206.582 62.1187 201.309 102.826 182.328 134.186C163.346
165.547 130.807 187.559 100.226 186.353C69.6454 185.297 41.0228 161.023 21.7403
129.362C2.45775 97.8511 -7.48481 59.1033 6.67581 34.5279C20.9871 10.1032 59.7028
-0.149132 97.9666 0.00163737C136.23 0.303176 174.193 10.857 190.312 36.4879Z"
/>
<image
class="about__blob-img"
x="0"
y="0"
href="src/assets/img/perfil.webp"
/>
</g>
</svg>
</div>
<div class="about__data">
<p class="about__description">
Born in 1999 in Malaga, Spain.
<br />
I developed an early passion for Programming and Ethical Hacking,
which led me to explore various technologies
<br /><br />
After delving into game/web development, I found my true calling
in cybersecurity, specializing in Malware Analysis and Threat
Hunting.
<br /><br />
With an analytical mindset and a commitment to continuous
learning, I thrive in collaborative environments, where I can
contribute to protect systems.
<br /><br />
Contact me for more!
</p>
<!--
<div class="about__info">
<div>
<span class="about__info-title">00+</span>
<span class="about__info-name"
>Years of<br />
experience
</span>
</div>
<div>
<span class="about__info-title">00+</span>
<span class="about__info-name"
>Completed <br />
projects
</span>
</div>
<div>
<span class="about__info-title">00+</span>
<span class="about__info-name"
>Companies <br />
worked for
</span>
</div>
</div> -->
<div class="about__buttons no-select">
<a
download
href="src/assets/pdf/RCGA-ENG-CV.pdf"
aria-label="Download Resume"
class="btn-resume"
data-tooltip="Size: 69KB"
>
<div class="button-wrapper">
<div class="text">Resume</div>
<span class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
width="2em"
height="2em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M12 15V3m0 12l-4-4m4 4l4-4M2 17l.621 2.485A2 2 0 0 0 4.561 21h14.878a2 2 0 0 0 1.94-1.515L22 17"
></path>
</svg>
</span>
</div>
</a>
</div>
</div>
</div>
<!-- ===================== SKILLS ===================== -->
<div class="section__title no-select" id="skills">
<h1 class="section__title_1">Skills</h1>
<h2 class="section__title_2">Skills</h2>
<p class="section__subtitle">My technical level</p>
</div>
<div class="skills__container container grid">
<!-- ====== Cybersecurity Expertise ====== -->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="uil uil-cube skills__icon"></i>
<h1 class="skills__title no-select">Cybersecurity Expertise</h1>
<i class="uil uil-angle-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Incident Response & Digital Forensics
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">Threat Detection & Intelligence</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Vulnerability Assessment & Penetration Testing
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Cryptography, Privacy and Data Confidentiality
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Regulatory Guidelines & Compliance
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">Frameworks: MITRE ATT&CK, NIST</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">OWASP Top 10</h3>
</div>
</div>
</div>
</div>
<!-- ====== Security Tools ====== -->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="uil uil-setting skills__icon"></i>
<h1 class="skills__title no-select">Security Tools</h1>
<i class="uil uil-angle-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
SIEM & Log Management: Splunk, QRadar, Wazuh, ElasticStack
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Network Analysis & Forensics: Wireshark/TShark, Nmap,
NetworkMiner, Zeek
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Intrusion Detection & Prevention (IDS/IPS): Snort, Suricata
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Vulnerability Assessment: OpenVAS, Nessus
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Penetration Testing: Burp Suite, Caido, Metasploit, Kali
Linux
</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">
Malware Analysis & Threat Intelligence: Yara, MISP/OpenCTI,
Sysmon/Osquery, Redline, Volatility, Velociraptor, PhishTool
</h3>
</div>
</div>
</div>
</div>
<!-- ====== Programming & Scripting ====== -->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="uil uil-arrow skills__icon"></i>
<h1 class="skills__title no-select">Programming & Scripting</h1>
<i class="uil uil-angle-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">Python</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">Bash</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">SQL/MySQL</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">C#</h3>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<h3 class="skills__name">HTML, CSS, JavaScript</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===================== PROJECTS ===================== -->
<section class="projects section no-select" id="projects">
<div class="section__title">
<h1 class="section__title_1">Projects</h1>
<h2 class="section__title_2">Projects</h2>
<p class="section__subtitle">
Featured work showcasing my technical skills and creativity
</p>
</div>
<div class="container">
<div class="projects__carousel-wrapper">
<button
class="carousel__button carousel__button--prev-projects"
aria-label="Previous projects"
>
<i class="uil uil-chevron-left"></i>
</button>
<div class="projects__carousel-container">
<div class="projects__carousel-track" id="projectsCarousel">
<!-- Projects will be dynamically loaded here -->
</div>
</div>
<button
class="carousel__button carousel__button--next-projects"
aria-label="Next projects"
>
<i class="uil uil-chevron-right"></i>
</button>
</div>
</div>
</section>
<!-- Project Modal -->
<div id="projectModal" class="project-modal">
<div class="project-modal__content">
<!-- Modal content dynamically loaded -->
</div>
</div>
<!-- ===================== Experience ===================== -->
<section class="experiences section no-select" id="experience">
<div class="section__title">
<h1 class="section__title_1">Experience</h1>
<h2 class="section__title_2">Experience</h2>
</div>
<div class="expcontainer grid">
<div class="experience__grid grid">
<!-- IT Technician -->
<div class="exp__card">
<div class="upper">
<h3>IT Technician</h3>
<h5>Freelance | Remote</h5>
<span>Apr. 2024 - Present | +1 year</span>
</div>
<div class="hr"></div>
<div class="clients">
<h4>Several national and international clients</h4>
</div>
<ul style="list-style-type: circle;">
<li>
Provided IT support to individuals and small businesses.
</li>
<li>
Performed system maintenance, optimisation and configuration.
</li>
<li>
Helped clients configure applications such as NVIDIA, OBS and Discord, and optimised apps.
</li>
<li>
And more!
</li>
<p class="sw_used">
Using Windows, Linux, TeamViewer..
</p>
</div>
<!-- IT Technician -->
<div class="exp__card">
<div class="upper">
<h3>Audiovisual Technician</h3>
<h5>Freelance | Remote</h5>
<span>Oct. 2021 - Present | +4 year</span>
</div>
<div class="hr"></div>
<div class="clients">
<h4>Various Clients such as Pubity, ForistaMeri, CTRN, GalaxyGaming..</h4>
</div>
<ul style="list-style-type: circle;">
<li>
Edited videos and managed social media accounts for international and national clients.
</li>
<li>
Created 2D animations and designed logos for international clients
</li>
<li>
And more!
</li>
<p class="sw_used">
Using Adobe Photoshop, Adobe Premiere, Adobe After Effects
</p>
</div>
<!-- Internship Unity 3D Developer -->
<div class="exp__card">
<div class="upper">
<h3>Internship Unity 3D Developer</h3>
<h5>Full Time | Office</h5>
<span>Mar. 2021 - May. 2021 | 3 months</span>
</div>
<div class="hr"></div>
<div class="clients"><h4>KRILL AUDIO</h4></div>
<p>
Developed applications with interactive audio, documented
processes, and tested various functionalities of the "Krilloud"
middleware.
</p>
<p class="sw_used">
Using Unity, Photoshop, Adobe InDesign, and Krilloud
</p>
</div>
</div>
</div>
</section>
<!-- ===================== Certifications ===================== -->
<section class="certificates section no-select" id="certificates">
<div class="section__title">
<h1 class="section__title_1">Certificates</h1>
<h2 class="section__title_2">Certificates</h2>
<p class="section__subtitle">
Showcasing my achievements and continuous learning.
</p>
<a
href="https://tryhackme.com/r/p/RCGAProds"
target="_blank"
aria-label="RCGA Prods TryHackMe"
style="display: inline-block; margin-bottom: 2%"
>
<img
id="THM_Badge"
data-src="https://tryhackme-badges.s3.amazonaws.com/RCGAProds.png"
alt="RCGA Prods Badge"
style="display: block"
loading="lazy"
/>
</a>
</div>
<div class="container">
<div class="carousel-wrapper">
<button
class="carousel__button carousel__button--prev"
aria-label="Previous certificates"
>
<i class="uil uil-chevron-left"></i>
</button>
<div class="carousel__container">
<div class="carousel__track" id="certificatesCarousel"></div>
</div>
<button
class="carousel__button carousel__button--next"
aria-label="Next certificates"
>
<i class="uil uil-chevron-right"></i>
</button>
</div>
</div>
</section>
<!-- CONTACT ME -->
<section class="contact section" id="contact">
<div class="section__title no-select">
<h1 class="section__title_1">Contact Me</h1>
<h2 class="section__title_2">Contact Me</h2>
<p class="section__subtitle">Get in touch</p>
</div>
<div class="contact__container container grid">
<div>
<div class="contact__information">
<i class="uil uil-envelope contact__icon"></i>
<div>
<h3 class="contact__title no-select">Email</h3>
<a
href="mailto:rcgaproductions@gmail.com"
id="copy2"
class="contact__subtitle textToCopy"
>rcgaproductions@gmail.com</a
>
<span class="hideCopiedText no-select" id="copyText2"
>Copied to clipboard!
</span>
</div>
</div>
<div class="contact__information">
<svg
class="contact__icon discord_icon"
viewBox="0 0 500 500"
xmlns="http://www.w3.org/2000/svg"
>
<g
transform="matrix(2.007539987564087, 0, 0, 2.007539987564087, -297.1560974121094, -260.0286560058594)"
>
<path
d="M 307.914 292.157 C 307.914 292.157 303.435 286.806 299.694 282.072 C 308.714 279.941 316.704 274.699 322.237 267.253 C 317.745 270.231 312.939 272.689 307.914 274.602 C 302.115 277.072 296.062 278.864 289.863 279.953 C 279.197 281.914 268.265 281.878 257.611 279.832 C 251.364 278.609 245.225 276.818 239.305 274.481 C 236.182 273.282 233.143 271.866 230.213 270.243 C 229.838 270.001 229.462 269.88 229.087 269.626 C 228.893 269.541 228.724 269.42 228.603 269.251 C 226.351 268.004 225.104 267.132 225.104 267.132 C 230.431 274.42 238.143 279.626 246.896 281.83 C 243.167 286.551 238.555 292.157 238.555 292.157 C 223.53 292.556 209.292 285.462 200.575 273.234 C 200.987 247.991 207.113 223.16 218.506 200.629 C 228.542 192.76 240.758 188.196 253.494 187.554 L 254.741 189.055 C 242.756 192.009 231.569 197.578 221.992 205.363 C 221.992 205.363 224.729 203.874 229.341 201.755 C 238.288 197.663 247.828 195.012 257.611 193.91 C 258.313 193.765 259.015 193.692 259.729 193.668 C 268.071 192.578 276.509 192.494 284.875 193.414 C 298.023 194.915 310.76 198.983 322.358 205.363 C 313.254 197.966 302.696 192.566 291.364 189.552 L 293.096 187.554 C 305.832 188.196 318.048 192.76 328.084 200.629 C 339.477 223.16 345.603 247.991 346.027 273.234 C 337.237 285.462 322.963 292.544 307.914 292.157 Z M 189.134 129.526 C 174.994 129.55 163.553 141.052 163.589 155.192 L 163.589 323.55 C 163.553 337.691 174.982 349.18 189.122 349.216 L 330.336 349.216 L 323.726 326.165 L 339.671 340.984 L 354.744 354.931 L 381.512 378.587 L 381.512 155.18 C 381.548 141.052 370.107 129.562 355.979 129.526 Z"
/>
<path
d="M 293.06 234.008 C 282.418 233.1 274.79 244.056 279.318 253.73 C 283.858 263.391 297.164 264.529 303.266 255.764 C 304.888 253.427 305.76 250.667 305.76 247.822 C 306.062 240.497 300.372 234.31 293.048 234.008"
></path>
<path
d="M 254.403 234.009 C 243.761 233.101 236.133 244.057 240.661 253.731 C 245.201 263.392 258.507 264.53 264.609 255.765 C 266.231 253.428 267.103 250.668 267.103 247.823 C 267.405 240.498 261.715 234.311 254.391 234.009"
style="transform-origin: 253.222px 247.831px"
></path>
</g>
</svg>
<div>
<h3 class="contact__title no-select">Discord</h3>
<span id="copy3" class="contact__subtitle textToCopy"
>carlosnoheq
</span>
<span class="hideCopiedText no-select" id="copyText3"
>Copied to clipboard!
</span>
</div>
</div>
</div>
<form
target="_blank"
action="https://formsubmit.co/c8dae9cdf7d65432017e84b39190c968"
method="POST"
class="contact__form grid"
>
<div class="contact__inputs grid">
<div class="contact__content">
<label for="name" class="contact__label no-select">Name</label>
<input
type="text"
inputmode="text"
id="name"
name="name"
class="contact__input"
required
placeholder="Enter your name"
autocomplete="off"
/>
</div>
<div class="contact__content">
<label for="email" class="contact__label no-select"
>Email</label
>
<input
type="email"
inputmode="email"
id="email"
name="email"
class="contact__input"
required
placeholder="Enter your email"
autocomplete="off"
/>
</div>
</div>
<div class="contact__content">
<label for="subject" class="contact__label no-select"
>Subject</label
>
<input
type="text"
inputmode="text"
id="subject"
name="subject"
class="contact__input"
required
placeholder="Enter the subject"
autocomplete="off"
/>
</div>
<div class="contact__content">
<label for="message" class="contact__label no-select"
>Message</label
>
<textarea
inputmode="text"
name="message"
id="message"
cols="0"
rows="7"
class="contact__input"
required
placeholder="Enter your message"
autocomplete="off"
></textarea>
</div>
<button type="submit" class="btn-send no-select">
<div class="outline"></div>
<div class="state state--default">
<div class="icon">
<svg
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g style="filter: url(#shadow)">
<path
d="M14.2199 21.63C13.0399 21.63 11.3699 20.8 10.0499 16.83L9.32988 14.67L7.16988 13.95C3.20988 12.63 2.37988 10.96 2.37988 9.78001C2.37988 8.61001 3.20988 6.93001 7.16988 5.60001L15.6599 2.77001C17.7799 2.06001 19.5499 2.27001 20.6399 3.35001C21.7299 4.43001 21.9399 6.21001 21.2299 8.33001L18.3999 16.82C17.0699 20.8 15.3999 21.63 14.2199 21.63ZM7.63988 7.03001C4.85988 7.96001 3.86988 9.06001 3.86988 9.78001C3.86988 10.5 4.85988 11.6 7.63988 12.52L10.1599 13.36C10.3799 13.43 10.5599 13.61 10.6299 13.83L11.4699 16.35C12.3899 19.13 13.4999 20.12 14.2199 20.12C14.9399 20.12 16.0399 19.13 16.9699 16.35L19.7999 7.86001C20.3099 6.32001 20.2199 5.06001 19.5699 4.41001C18.9199 3.76001 17.6599 3.68001 16.1299 4.19001L7.63988 7.03001Z"
fill="currentColor"
></path>
<path
d="M10.11 14.4C9.92005 14.4 9.73005 14.33 9.58005 14.18C9.29005 13.89 9.29005 13.41 9.58005 13.12L13.16 9.53C13.45 9.24 13.93 9.24 14.22 9.53C14.51 9.82 14.51 10.3 14.22 10.59L10.64 14.18C10.5 14.33 10.3 14.4 10.11 14.4Z"
fill="currentColor"
></path>
</g>
<defs>
<filter id="shadow">
<fedropshadow
dx="0"
dy="1"
stdDeviation="0.6"
flood-opacity="0.5"
></fedropshadow>
</filter>
</defs>
</svg>
</div>
<p>
<span style="--i: 0">S</span>
<span style="--i: 1">e</span>
<span style="--i: 2">n</span>
<span style="--i: 3">d</span>
</p>
</div>
<div class="state state--sent">
<div class="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
height="1em"
width="1em"
stroke-width="0.5px"
stroke="black"
>
<g style="filter: url(#shadow)">
<path
fill="currentColor"
d="M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z"
></path>
<path
fill="currentColor"
d="M10.5795 15.5801C10.3795 15.5801 10.1895 15.5001 10.0495 15.3601L7.21945 12.5301C6.92945 12.2401 6.92945 11.7601 7.21945 11.4701C7.50945 11.1801 7.98945 11.1801 8.27945 11.4701L10.5795 13.7701L15.7195 8.6301C16.0095 8.3401 16.4895 8.3401 16.7795 8.6301C17.0695 8.9201 17.0695 9.4001 16.7795 9.6901L11.1095 15.3601C10.9695 15.5001 10.7795 15.5801 10.5795 15.5801Z"
></path>
</g>
</svg>
</div>
<p>
<span style="--i: 5">S</span>
<span style="--i: 6">e</span>
<span style="--i: 7">n</span>
<span style="--i: 8">t</span>
</p>
</div>
</button>
</form>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer no-select">
<div class="footer__bg">
<div class="footer__container container grid">
<div>
<h1 class="footer__title">
<a href="#home" class="footer__link">Carlos</a>
</h1>
<span class="footer__subtitle">Cybersecurity Analyst</span>
</div>
<ul class="footer__links">
<li>
<a href="#about" class="footer__link" style="white-space: nowrap"
>About Me</a
>
</li>
<!-- Move 'Projects' section below 'Experience' once I have more experience -->
<li>
<a href="#projects" class="footer__link">Projects</a>
</li>
<li>
<a href="#experience" class="footer__link">Experience</a>
</li>
<!-- Write-ups
<li>
<a href="blog/index.html" class="footer__link">Blog</a>
</li>
-->
<li>
<a href="#certificates" class="footer__link">Certificates</a>
</li>
<li>
<a
href="#contact"
class="footer__link"
style="white-space: nowrap"
>Contact Me</a
>
</li>
</ul>
<div class="footer__socials">
<!-- Github -->
<a
href="https://github.com/RCGAProds"
target="_blank"
aria-label="Github"
class="footer__social tooltip"
>
<span class="tooltiptext footerToolTipText">Github</span>
<i class="uil uil-github"></i>
</a>
<!-- HackTheBox -->
<a
href="#"
aria-label="HackTheBox"
class="footer__social openModalLink tooltip"
>
<span class="tooltiptext footerToolTipText">HackTheBox</span>
<i class="uil uil-cube"></i>
</a>
<!-- TryHackMe -->
<a
href="https://tryhackme.com/p/RCGAProds"
target="_blank"
aria-label="TryHackMe"
class="footer__social tooltip"
>
<span class="tooltiptext footerToolTipText">TryHackMe</span>
<i class="uil uil-cloud"></i>
</a>
<!-- Linkedin -->
<a
href="https://www.linkedin.com/in/rcgaprods/"
target="_blank"
aria-label="Linkedin"
class="footer__social tooltip"
>
<span class="tooltiptext footerToolTipText">Linkedin</span>
<i class="uil uil-linkedin-alt"></i>
</a>
<!-- Credly -->
<a
href="https://www.credly.com/users/carlos-garcia.aa88ba38"
target="_blank"
aria-label="Credly"
class="footer__social tooltip"
>
<span class="tooltiptext footerToolTipText">Credly</span>