-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
984 lines (967 loc) · 40.7 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
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
<!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>
Cryptonite - Official Cybersecurity Student Project of MIT Manipal
</title>
<link rel="shortcut icon" type="image/png" href="./img/favicon.jpg" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/subcards.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="stylesheet" href="./styles/profile.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=VT323&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="custom-scrollbar">
<section class="hero is-fullheight s1">
<div class="hero-head">
<nav
class="navbar is-fixed-top is-light is-success asdasd"
id="bgshiz"
>
<div class="container is-light">
<div class="navbar-brand">
<a class="navbar-item is-size-4" href="#landing">
Cryptonite
</a>
</div>
<div id="navbarMenuHeroC" class="navbar-menu">
<div class="navbar-end">
<!-- <a
class="navbar-item is-active animate__animated animate__headShake animate__infinite"
href="#"
target="_blank"
>
NiteCTF
</a> -->
<a class="navbar-item" href="#aboutus"> About Us </a>
<a class="navbar-item" href="#subs"> Subsystems </a>
<a class="navbar-item" href="#ctfstats"> Achievements </a>
<a class="navbar-item" href="#members"> Team </a>
</div>
</div>
</div>
</nav>
</div>
<div id="particles-js"></div>
<div class="hero-body" id="landing">
<div class="container has-text-centered">
<img
src="./img/crypto-perfect-2.png"
alt="cryptonite logo"
id="logo"
class="hvr-grow"
/>
<p class="subtitlehead" data-aos="flip-up">We are</p>
<div class="hvr-grow">
<br />
<p class="titlehead" data-aos="flip-up">Cryptonite</p>
<!-- <br />
<br />
<br />
<br />
<p
class="subtitlehead aos-init aos-animate"
data-aos="flip-up"
>
<a
style="
font-size: 30px;
font-family: 'Press Start 2P';
color: white;
"
>&</a
>
</p>
<br />
<br /> -->
<!-- <br />
<br />
<p
class="subtitlehead aos-init aos-animate"
data-aos="flip-up"
style="padding-left: 30px"
>
<a
href="https://apply.cryptonite.live"
target="_blank"
style="text-decoration: underline"
>we are RECRUITING!</a
>
</p> -->
<!-- <br />
<br />
<br />
<p
class="subtitlehead aos-init aos-animate"
data-aos="flip-up"
style="padding-left: 30px"
>
<a
href="https://www.nitectf2024.live"
target="_blank"
style="text-decoration: underline"
>niteCTF 2024 is LIVE !!!</a
>
</p>
<br /> -->
</div>
</div>
</div>
</section>
<section class="hero is-halfheight" id="aboutus">
<div class="hero-body">
<div class="container is-max-widescreen">
<h2
class="title heads has-text-centered statscol"
data-aos="fade-up"
>
Who are We?
</h2>
<hr class="hrhack" />
<p class="subtitle subtext" id="whowe" data-aos="fade-up">
Cryptonite is the official Cybersecurity & Ethical Hacking Student
Project of Manipal Institute of Technology, MAHE, Manipal. Our
major areas of focus include exploring cutting-edge exploits,
reverse-engineering everyday tools, analyzing encryption schemes,
and diving into hardware hacking, all while mastering the latest
techniques in both hardware and software security through CTFs and
research. Our major flagship events include Cryptober and niteCTF,
both of which aim to unite the brightest minds in cybersecurity to
compete, collaborate, and innovate.
</p>
</div>
</div>
</section>
<div class="container">
<hr class="invi" />
</div>
<section class="hero">
<div class="hero-body">
<div class="container">
<video width="73%" height="auto" controls>
<source
src="/assets/vid.mp4"
type="video/mp4"
data-aos="fade-left"
/>
</video>
</div>
</div>
</section>
</div>
<section class="hero is-fullheight bg2 canvas" id="subs">
<section class="hero is-medium has-text-centered">
<div class="hero-body">
<div class="container">
<h1 class="title heads statscol" data-aos="fade-left">
Our Subsystems
</h1>
<br />
<div class="tocenter heads">
<div class="containern1 zewrap">
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/AI.png" />
<!--<a target="_blank" href="https://icons8.com/icon/61864/artificial-intelligence">Artificial Intelligence</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>-->
<h3 class="h3fontch">Artificial Intelligence</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
AI is crucial in cybersecurity for detecting threat,
analyzing patterns, and predicting attacks. AI is also
important to develop stronger, more robust defense
strategies against evolving cyber threats.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/A&D.png" />
<h3 class="h3fontch">Attack / Defense</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Patch vulnerabilities, breach systems, and dominate in
the offence and defence battlefield.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/bin.png" />
<h3 class="h3fontch">Binary Exploitation</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Binary Exploitation is like an treasure hunt for
vulnerabilities in a program and bending them to do
things it isn't supposed to do.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/crypto.png" />
<h3 class="h3fontch">Cryptography</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Cryptography is the study of securing communication and
information through encoding and encryption techniques,
ensuring privacy, data integrity, authentication, and
preventing unauthorised access.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/forensic.png" />
<h3 class="h3fontch">Forensics</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Computer forensics is a field of cybersecurity that uses
investigation techniques to help identify, collect, and
store evidence from electronic devices, retrieval and
recovery of data, steganography and more.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/cpu.png" />
<h3 class="h3fontch">Hardware</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Cryptonite Hardware Subsystem specialises in offensive
security, exploiting electronic systems by reversing
firmware, fault attacks, and custom tool development to
exploit, then enhance embedded system security.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/netsec.png" />
<h3 class="h3fontch">Network Security</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Explore hands-on projects like hacking routers, building
mesh networks, and creating secure communication
systems. Join us to dive into building cutting edge
solutions at the forefront of network security.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/research.png" />
<h3 class="h3fontch">Research</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Interdisciplinary research spanning AI for advanced
cybersecurity, networking protocols, and testing
hardware resilience.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/rev.png" />
<h3 class="h3fontch">Reverse Engineering</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
It is the task of deconstructing software to extract
information from it. Reverse engineering helps to make a
system robust hence ensuring that a system doesn’t have
any significant security flaws and protects it from
hackers and spyware.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/web.png" />
<h3 class="h3fontch">Web Exploitation</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
Web exploitation is being in a virtual shopping mall,
but instead of buying things, you're sneaking into the
backroom, figuring out how to change the prices, and
taking control of the entire building's security
system—all without anyone noticing.
</p>
</div>
</div>
</div>
<div class="card-sub" data-aos="zoom-in">
<div class="face face1">
<div class="content facehead">
<img src="/assets/mgmt.png" />
<h3 class="h3fontch">Design & Management</h3>
</div>
</div>
<div class="face face2">
<div class="content facecont">
<p>
We coordinate the working of the different subsystems of
the team. We handle the finance, sponsorship and
publicity with regards to all events held by the team,
along with handling the Social media handles and the
design and graphics.
</p>
</div>
</div>
</div>
</div>
<br />
</div>
</div>
</div>
</section>
<section id="ctfstats">
<div class="container is-fluid"></div>
<section class="hero is-halfheight bgchange">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<div class="column is-10">
<div class="columns">
<div class="column is-8">
<h1
class="title m-t-60 statscol"
data-aos="zoom-out-down"
>
CTF Stats
</h1>
<h2
class="subtitle has-text-white my-auto is-size-4 h2fontch"
data-aos="fade-right"
>
We are currently ranked among the top
<strong
class="subtitle has-text-white my-auto is-size-3 h2fontch"
data-aos="fade-right"
>0.02%</strong
>
of teams globally and
<strong
class="subtitle has-text-white my-auto is-size-3 h2fontch"
data-aos="fade-right"
>#3</strong
>
nationally. We emerged as the winners of BITSCTF’24,
organized by BITS Goa, and secured the 1st position at
ShunyaCTF’24. We also earned the 2nd position at the
RVCE × IITB × YCF CTF’24, jointly organized by RVCE,
Bangalore and IIT Bombay. Additionally, we achieved 9th
place in India during CSAW’22, which led to our
qualification for the World CSAW’22 Finals.
</h2>
<h1
class="title m-t-60 mt-6 statscol"
data-aos="zoom-out-down"
>
Member Achievements
</h1>
<h2
class="subtitle has-text-white my-auto is-size-4 h2fontch"
data-aos="fade-right"
>
<ul style="list-style-type: disc">
<li>
First position at
<a
href="https://sih.gov.in/sih2024/sih2024-grand-finale-result"
target="_blank"
style="transition: opacity 0.3s"
onmouseover="this.style.color='#848fc2';"
onmouseout="this.style.color='#485fc7';"
>Smart India Hackathon’24 Software Edition</a
>
for the problem statement: Recovery of Deleted Data
from BTRFS & XFS Filesystems.
</li>
<li>
First position at
<a
href="https://www.sih.gov.in/sih2023-grand-finale-result"
target="_blank"
style="transition: opacity 0.3s"
onmouseover="this.style.color='#848fc2';"
onmouseout="this.style.color='#485fc7';"
>Smart India Hackathon’23 Software Edition</a
>
for our phishing email detection system, Phishtrap.
</li>
<li>
Second position in
<a
href="https://fitt-iitd.in/Cython/"
target="_blank"
style="transition: opacity 0.3s"
onmouseover="this.style.color='#848fc2';"
onmouseout="this.style.color='#485fc7';;"
>Cython’24</a
>
organised by FITT-IIT Delhi in the Kernel Fuzzing
category.
</li>
<li>
Second position in IIT Roorkee’s Productathon’23.
</li>
<li>
Second position at the
<a
href="https://newsfirstprime.com/cyber-crimes-conclave-2024-hackathon-know-who-the-winners-are/"
target="_blank"
style="transition: opacity 0.3s"
onmouseover="this.style.color='#848fc2';"
onmouseout="this.style.color='#485fc7';"
>Cyber Crimes Conclave Hackathon’24</a
>
organised by IISc Bangalore.
</li>
<li>And many more...</li>
</ul>
</h2>
</div>
<div class="column has-text-centered">
<a
id="ctftimeImg"
href="https://ctftime.org/team/62713"
target="_blank"
class="m-t-50 hvr-grow"
data-aos="fade-left"
style="display: inline-block; transition: all 0.3s ease"
onmouseover="this.children[0].style.opacity='0.75';"
onmouseout="this.children[0].style.opacity='1';"
>
<img
src="./img/ctftime.png"
style="transition: all 0.3s ease; margin-top: 35px"
/>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
</section>
<section class="hero is-medium" id="members">
<div id="board-area" class="hero-body" bg-color="Red">
<div class="container">
<div class="columns is-centered">
<div class="column is-10">
<div class="sub-section">
<h3
class="title is-size-3 has-text-centered statscol"
id="board-area-heading"
data-aos="zoom-out"
>
Board Members
</h3>
<div class="containerz1 pb-auto cards-grid">
<div class="cardz1 card0">
<div class="borderz1">
<h2 class="z1">Prashant K</h2>
<h2 class="z3">Team Leader</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/prashanth-j-kumar/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a href="https://github.com/sibi361" target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<!-- <a href="" target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a> -->
</div>
</div>
</div>
<div class="cardz1 card1">
<div class="borderz1">
<h2 class="z2">Ansh Goyal</h2>
<h2 class="z4">Team Manager</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/ansh-goyal/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
<a href="https://github.com/aghogwarts" target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
<a
href="https://www.instagram.com/ansh_g22"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card4">
<div class="borderz1">
<h2 class="z1 splitTex">Yogesh Rane</h2>
<h2 class="z3">Forensics Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/yogesh-rane-1b1064253/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a href="https://github.com/YouGuess21" target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://www.instagram.com/you.gu3ss"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card7">
<div class="borderz1">
<h2 class="z2">Gurmann Singh Ajmani</h2>
<h2 class="z4">AI Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/gurmann-singh-ajmani-a80a31262/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
<a
href="https://github.com/GurmannAjmani"
target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
<a
href="https://www.instagram.com/gurmann_ajmani"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card3">
<div class="borderz1">
<h2 class="z1 splitTex">Yvsr Akash</h2>
<h2 class="z3">Attack Defence Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/yvsr-akash-995847184/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a href="https://github.com/lepnoxic" target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://www.instagram.com/a49akash"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card9">
<div class="borderz1">
<h2 class="z2">Nishant Gunda</h2>
<h2 class="z4">Binary Exploitation Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/nishant-gunda-96530b250/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://github.com/nishantgunda"
target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://www.instagram.com/spiderdrive27"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card5">
<div class="borderz1">
<h2 class="z2">Tanmay Saxena</h2>
<h2 class="z4">Cryptography Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/tanmay-saxena-76aa85274/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a href="https://github.com/Valvahen" target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://www.instagram.com/valvahen"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card2">
<div class="borderz1">
<h2 class="z2">Rohan Khandelwal</h2>
<h2 class="z3">Network Security Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/rohank02/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a href="https://github.com/rohan-k02" target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://www.instagram.com/rohan.k02"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card10">
<div class="borderz1">
<h2 class="z2">Uday O</h2>
<h2 class="z4">Reverse Engineering Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/uday-o/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
<a
href="https://github.com/Berserker2659"
target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
<a
href="https://www.instagram.com/_uday_o_"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
style="filter: invert(100%)"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card6">
<div class="borderz1">
<h2 class="z2">Avanish Money Srivats</h2>
<h2 class="z4">Research Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/avanish-money-srivats-9bb362234/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://github.com/agent-reagent"
target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://www.instagram.com/terminally_asleep"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
<div class="cardz1 card8">
<div class="borderz1">
<h2 class="z2">Rupak Banerjee</h2>
<h2 class="z4">Web Exploitation Head</h2>
<div class="iconsz1">
<a
href="https://www.linkedin.com/in/rupak-banerjee-61509727b/"
target="_blank"
><i
class="fa fa-linkedin boardicons"
aria-hidden="true"
></i
></a>
<a href="http://github.com/AgentPWN" target="_blank"
><i
class="fa fa-github boardicons"
aria-hidden="true"
></i
></a>
<a
href="https://www.instagram.com/mai_rupak_hoon"
target="_blank"
><i
class="fa fa-instagram boardicons"
aria-hidden="true"
></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer id="footer" class="mt-4" style="padding-top: 60px">
<div
class="container"
data-aos="fade-up"
data-aos-anchor-placement="center"
>
<div class="columns is-multiline is-centered container is-widescreen">
<div
class="column is-4-fullhd is-3-widescreen is-4-desktop is-6-tablet is-12-mobile mb-6 footer-center"
>
<a href="#landing" class="logo is-flex is-centered titlehead">
Cryptonite
</a>
<p
class="footer-description has-text-centered footertext is-size-4"
style="padding-top: 20px"
>
Made with <span class="hvr-grow">❤️</span> in Manipal
</p>
<hr class="hrhack" />
<div
class="social-links is-flex pl-9"
id="allsocials"
style="padding-top: 10px"
>
<a
href="https://www.instagram.com/cryptonite_mit/"
target="_blank"
>
<i class="fa fa-instagram"></i>
</a>
<a
href="https://www.linkedin.com/company/cryptonite-mit"
target="_blank"
>
<i class="fa fa-linkedin"></i>
</a>
<a href="mailto:[email protected]" target="_blank">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="container copyright position-bottom is-fluid">
<div
class="copyright-text has-text-centered"
style="padding-right: 20px"
>
Copyright © Cryptonite 2024<br />
</div>
<div
class="copyright-text has-text-centered"
style="padding-right: 20px"
>
<a
href="/privacy-policy.html"
target="_blank"
style="text-decoration: none; color: #4a4a4a"
>
Privacy Policy </a
><br /><br />
</div>
</div>
</div>
</footer>
<script src="./assets/particles.min.js"></script>
<script src="./assets/particles-try.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init({
offset: 200,
duration: 500,
easing: "ease-in-sine",
delay: 200,
});
</script>
</body>
</html>