This repository has been archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
843 lines (831 loc) · 64.4 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
<!DOCTYPE html>
<html lang="en" class="scroller">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>OWASP VITCC | The official website for OWASP Student Chapter VIT Chennai</title>
<meta name="description" content="The Open Web Application Security Project (OWASP), an online community, produces freely-available articles, methodologies, documentation, tools, and technologies in the field of web application security.">
<meta name="author" content="Apratim Shukla">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<link href="assets/owasp-logo.png" rel="icon">
<link href="assets/assets.min.css" rel="stylesheet">
<link href="assets/style.min.css" rel="stylesheet">
<link href="assets/fonts.css" rel="stylesheet">
<link rel="stylesheet" href="assets/customScrollBar.css">
<link rel="stylesheet" href="assets/loader.css">
</head>
<body data-gr-c-s-loaded="true" style="overflow: hidden;" class="home_load load_test" >
<div class="pre_loader">
<div class="ring">
<img src="./assets/owasp-logo.png" class="loader_img" />
<span>
</span>
</div>
</div>
<header class="">
<div class="container">
<div class="row">
<a href="" class="logo"><img src="assets/owasp-logo.png" alt="OWASP" height="60px" class="top-logo"> </a>
<a href="" class="menutoggle">
<div class="bar"></div>
</a>
<ul class="menu">
<li class="top-bar-wrap">
<a href="" class="close-icon-wrap">
<div class="close-icon"></div>
</a>
</li>
<li>
<a href="team.html">Our Team<span class="indicator"></span></a>
</li>
<li>
<a href="https://owaspvit.com/hall_of_owasp">Hall of Owasp<span class="indicator"></span></a>
</li>
<li>
<a href="https://owaspvit.org/leaderboard">Leaderboard<span class="indicator"></span></a>
</li>
<li>
<a href="https://github.com/owaspvit/">GitHub<span class="indicator"></span></a>
</li>
<li>
<a href="https://blog.owaspvit.com">Blog<span class="indicator"></span></a>
</li>
<li>
<a href="https://medium.owaspvit.com">Medium<span class="indicator"></span></a>
</li>
<li><a href="https://owaspvit.org" class="rocket-btn rocket-btn-ghost visible-lg-inline-block" target="_blank">Open Source</a></li>
</ul>
</div>
</div>
</header>
<section id="hero" class="hero" style="height: 1333.2px;">
<div class="container">
<div class="row">
<div class="hero-sm hidden-xs">
<div class="col-sm-5 col-md-6 text-section" style="margin-top: 184.7px; transform: translate3d(0px, 0px, 0px); display: block;">
<div class="typed-strings" style="display: none">
<p>VIT Chennai!</p>
<p>Student Chapter!</p>
</div>
<h1 class="hero-header">Welcome to <br>OWASP <span class="typed">VIT Chennai!</span><span class="typed-cursor"></span></h1>
<p class="hero-text">Started off with a few people having cyber safety in mind, the chapter now boasts a big gathering of members and associates alike. Join us on our mission to make the cyber space a safer place.</p>
<div class="button-block"><a href="#core" class="rocket-btn rocket-btn-animated-icon rocket-btn-fixed-width"><span class="rocket-btn-icon-wrap"><i class="fa fa-rocket" aria-hidden="true"></i></span> <span class="rocket-btn-text-wrap">Explore!</span></a></div>
</div>
<div class="col-sm-7 col-md-6 rocket-section" style="display: block;">
<div id="bg-wrap" style="margin-bottom: 37px; transform: translate3d(0px, 0px, 0px);">
<div id="bg1" style="transform: translate3d(-5.6px, 0px, 0px);">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 495 495" style="enable-background:new 0 0 495 495" xml:space="preserve">
<g>
<circle style="fill:#F0EDF7" cx="248.2" cy="247.5" r="247.5"></circle>
<rect x="0.7" style="fill:none" width="495" height="495"></rect>
</g>
</svg>
</div>
<div id="bg2" style="transform: translate3d(-9.33333px, 0px, 0px);">
<svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 495 495" style="enable-background:new 0 0 495 495" xml:space="preserve">
<g>
<path style="fill:#E7E1F8" d="M247.4,435.5c-103.5,0-187.7-84.2-187.7-187.7C59.7,144.3,143.9,60,247.4,60s187.7,84.2,187.7,187.7
C435.1,351.3,350.9,435.5,247.4,435.5z"></path>
<rect x="-0.1" y="0.3" style="fill:none" width="495" height="495"></rect>
</g>
</svg>
</div>
<div id="bg3" style="transform: translate3d(-13.0667px, 0px, 0px);">
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 495 495" style="enable-background:new 0 0 495 495" xml:space="preserve">
<g>
<path style="fill:#DFD6F9" d="M247.4,375.5c-70.4,0-127.7-57.3-127.7-127.7S177,120.1,247.4,120.1s127.7,57.3,127.7,127.7
C375.1,318.2,317.8,375.5,247.4,375.5z"></path>
<rect x="-0.1" y="0.3" style="fill:none" width="495" height="495"></rect>
</g>
</svg>
</div>
<div id="stars" style="transform: translate3d(-3.73333px, 0px, 0px);">
<svg version="1.1" id="Layer_4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 721.9 634" style="enable-background:new 0 0 721.9 634" xml:space="preserve">
<g>
<path class="star1" d="M568.8,307.5c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8C576.8,303.9,573.2,307.5,568.8,307.5z
M568.8,295.5c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4s4-1.8,4-4C572.8,297.3,571,295.5,568.8,295.5z"></path>
<path class="star2" d="M84.4,554.3c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8C92.4,550.8,88.8,554.3,84.4,554.3z M84.4,542.3
c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C88.4,544.1,86.6,542.3,84.4,542.3z"></path>
<path class="star3" d="M405,16c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8C413,12.4,409.4,16,405,16z M405,4c-2.2,0-4,1.8-4,4
c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C409,5.8,407.2,4,405,4z"></path>
<path class="star4" d="M713.9,599.6c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8C721.9,596,718.3,599.6,713.9,599.6z
M713.9,587.6c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C717.9,589.4,716.1,587.6,713.9,587.6z"></path>
<path class="star5" d="M464.1,167.5c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8C472.1,163.9,468.5,167.5,464.1,167.5z
M464.1,155.5c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C468.1,157.3,466.3,155.5,464.1,155.5z"></path>
<path class="star6" d="M146.8,228.8c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8s8,3.6,8,8C154.8,225.3,151.2,228.8,146.8,228.8z M146.8,216.8
c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4s4-1.8,4-4C150.8,218.6,149,216.8,146.8,216.8z"></path>
<path class="star7" d="M93.4,347.3h-7v-7c0-1.1-0.9-2-2-2s-2,0.9-2,2v7h-7c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h7v7c0,1.1,0.9,2,2,2
s2-0.9,2-2v-7h7c1.1,0,2-0.9,2-2C95.4,348.2,94.5,347.3,93.4,347.3z"></path>
<path class="star8" d="M224.9,78.6h-7v-7c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2v7h-7c-1.1,0-2,0.9-2,2s0.9,2,2,2h7v7c0,1.1,0.9,2,2,2
c1.1,0,2-0.9,2-2v-7h7c1.1,0,2-0.9,2-2S226,78.6,224.9,78.6z"></path>
<path class="star9" d="M540.8,87.6h-7v-7c0-1.1-0.9-2-2-2s-2,0.9-2,2v7h-7c-1.1,0-2,0.9-2,2s0.9,2,2,2h7v7c0,1.1,0.9,2,2,2s2-0.9,2-2
v-7h7c1.1,0,2-0.9,2-2S541.9,87.6,540.8,87.6z"></path>
<path class="star10" d="M632,455.8h-7v-7c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2v7h-7c-1.1,0-2,0.9-2,2s0.9,2,2,2h7v7c0,1.1,0.9,2,2,2
c1.1,0,2-0.9,2-2v-7h7c1.1,0,2-0.9,2-2S633.1,455.8,632,455.8z"></path>
<circle class="star11" cx="151.3" cy="435.3" r="4.5"></circle>
<circle class="star12" cx="338.6" cy="76.1" r="4.5"></circle>
<circle class="star13" cx="669.5" cy="178.8" r="4.5"></circle>
<circle class="star14" cx="588.3" cy="578.5" r="4.5"></circle>
<circle class="star15" cx="39.6" cy="159.5" r="4.5"></circle>
<circle class="star16" cx="536.3" cy="400.1" r="4.5"></circle>
<circle class="star17" cx="4.5" cy="629.5" r="4.5"></circle>
</g>
</svg>
</div>
</div>
<div id="rocket-wrap" style="margin-bottom: 37px; transform: translate3d(0px, 226px, 0px);">
<svg version="1.1" id="Layer_5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 171.3 621.9" style="enable-background:new 0 0 171.3 621.9" xml:space="preserve">
<path style="fill:#E6E4ED;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M99.7,280.9h-28v10.5
l-3,5.3c0,2.1,1.7,3.8,3.8,3.8H99c2.1,0,3.8-1.7,3.8-3.8l-3-5.3v-10.5H99.7z"></path>
<g>
<path style="fill:#E6E4ED;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M147.8,303.8v-7.3h-19.3
v7.3l-3,5.3c0,2.1,1.7,3.8,3.8,3.8h17.9c2.1,0,3.8-1.7,3.8-3.8L147.8,303.8z"></path>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" x1="128.5" y1="303.8" x2="147.8" y2="303.8"></line>
</g>
<g>
<path style="fill:#E6E4ED;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M42.8,303.8v-7.3H23.5
v7.3l-3,5.3c0,2.1,1.7,3.8,3.8,3.8h17.9c2.1,0,3.8-1.7,3.8-3.8L42.8,303.8z"></path>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" x1="23.5" y1="303.8" x2="42.8" y2="303.8"></line>
</g>
<rect x="128.5" y="296.5" style="opacity:0.15;fill:#2F2442;enable-background:new" width="19.3" height="7.3"></rect>
<rect x="23.5" y="296.5" style="opacity:0.15;fill:#2F2442;enable-background:new" width="19.3" height="7.3"></rect>
<rect x="71.7" y="280.9" style="opacity:0.15;fill:#2F2442;enable-background:new" width="28" height="6"></rect>
<path style="fill:#E6E4ED;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M120.7,273.6V69.4
c0-35.6-23.8-67.9-35-67.9s-35,32.3-35,67.9v204.2H120.7z"></path>
<path style="opacity:0.15;fill:#2F2442;enable-background:new" d="M120.7,69.4v204.2h-14v-211c0-25.6-11.4-45.5-24.6-60.2
c1.3-0.6,2.5-0.9,3.6-0.9C96.9,1.5,120.7,33.8,120.7,69.4z"></path>
<path style="fill:#F25A7E;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M107.7,280.8V139.5
c0-26.2-11.2-54.7-22-54.7s-22,28.5-22,54.7v141.3H107.7z"></path>
<path style="opacity:0.15;fill:#2F2442;enable-background:new" d="M107.7,139.5v141.3H98V137c0-26.4-7.4-44.5-15.8-51.2
c1.5-1.1,2-1,3.6-1C96.5,84.8,107.7,113.3,107.7,139.5z"></path>
<path style="fill:#5BEFEB;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M138.2,62.6
c-9.7,0-17.5,26.3-17.5,46.7v181.3c0,3.3,2.7,5.9,6,5.9h23.1c3.3,0,6-2.7,6-5.9V109.3C155.7,88.9,147.8,62.6,138.2,62.6z"></path>
<path style="opacity:0.15;fill:#2F2442;enable-background:new" d="M156.1,109.3v181.3c0,3.3-2.7,6-6,6h-2.5V105.1
c0-17.4-5.3-32.4-10.3-42.4c0.4-0.1,0.9-0.2,1.3-0.2C148.3,62.6,156.1,88.9,156.1,109.3z"></path>
<path style="fill:#5BEFEB;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M33.2,62.6
c-9.7,0-17.5,26.3-17.5,46.7v181.3c0,3.3,2.7,5.9,6,5.9h23.1c3.3,0,6-2.7,6-5.9V109.3C50.7,88.9,42.8,62.6,33.2,62.6z"></path>
<path style="opacity:0.15;fill:#2F2442;enable-background:new" d="M50.7,109.3v181.3c0,3.3-2.7,6-6,6h-2.5V105.1
c0-17.4-5.3-32.4-10.3-42.4c0.4-0.1,0.9-0.2,1.3-0.2C42.8,62.6,50.7,88.9,50.7,109.3z"></path>
<g>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="15.7" y1="105.1" x2="50.5" y2="105.1"></line>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="15.7" y1="140.9" x2="50.5" y2="140.9"></line>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="15.7" y1="176.7" x2="50.5" y2="176.7"></line>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="15.7" y1="212.4" x2="50.5" y2="212.4"></line>
</g>
<g>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="120.4" y1="105.1" x2="155.2" y2="105.1"></line>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="120.4" y1="140.9" x2="155.2" y2="140.9"></line>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="120.4" y1="176.7" x2="155.2" y2="176.7"></line>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-miterlimit:10" x1="120.4" y1="212.4" x2="155.2" y2="212.4"></line>
</g>
<path style="fill:#E6E4ED;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M63.6,151.4v129.4
L6.5,268.1c-0.1,0-0.2,0-0.3-0.1c-2.7-0.7-4.7-3.2-4.7-6.1v-17.1C1.5,215.2,45.7,227.1,63.6,151.4z"></path>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M11.3,269.2v-19.4
c0-25.2,31.7-20.5,52.3-64.4"></path>
<path style="fill:#E6E4ED;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M107.7,151.4v129.4
l57.1-12.7c0.1,0,0.2,0,0.3-0.1c2.7-0.7,4.7-3.2,4.7-6.1v-17.1C169.8,215.2,125.6,227.1,107.7,151.4z"></path>
<path style="opacity:0.15;fill:#2F2442;enable-background:new" d="M115.3,175.4v103.8l-7.6,1.7V151.4
C109.9,160.6,112.5,168.5,115.3,175.4z"></path>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M160,269.2v-19.4
c0-25.2-31.7-20.5-52.3-64.4"></path>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M96.7,122c-2.2-2.6-6.3-4.3-11-4.3s-8.8,1.7-11,4.3"></path>
<path style="fill:#5BEFEB;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M90,258.2
c0,10.2-4.3,31.4-4.3,31.4s-4.3-21.2-4.3-31.4c0-10.2,1.1-13.2,4.3-13.2C88.9,245,90,248,90,258.2z"></path>
<lineargradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="85.65" y1="6.2" x2="85.65" y2="301.7" gradientTransform="matrix(1 0 0 -1 0 624)">
<stop offset="0.3745" style="stop-color:#EDC0B2;stop-opacity:0"></stop>
<stop offset="1" style="stop-color:#EDC0B2"></stop>
</lineargradient>
<rect x="63.6" y="322.3" style="fill:url(#SVGID_1_)" width="44.1" height="295.5"></rect>
<lineargradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="33.3" y1="2.2" x2="33.3" y2="297.7" gradientTransform="matrix(1 0 0 -1 0 624)">
<stop offset="0.3745" style="stop-color:#EDC0B2;stop-opacity:0"></stop>
<stop offset="1" style="stop-color:#EDC0B2"></stop>
</lineargradient>
<rect x="22.3" y="326.3" style="fill:url(#SVGID_2_)" width="22" height="295.5"></rect>
<lineargradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="138.8" y1="2.2" x2="138.8" y2="297.7" gradientTransform="matrix(1 0 0 -1 0 624)">
<stop offset="0.3745" style="stop-color:#EDC0B2;stop-opacity:0"></stop>
<stop offset="1" style="stop-color:#EDC0B2"></stop>
</lineargradient>
<rect x="127.8" y="326.3" style="fill:url(#SVGID_3_)" width="22" height="295.5"></rect>
<path class="big-fire-1" style="fill:#EDC0B2;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M85.7,306.2
c-20.1,0-22.8,9.1-22.8,17.6c0,25.9,22.8,48.6,22.8,48.6s22.8-22.7,22.8-48.6C108.5,315.3,105.8,306.2,85.7,306.2z"></path>
<path class="big-fire-2" style="fill:#EF948F;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M85.7,306.2
c-14.2,0-16.1,6.4-16.1,12.4c0,18.3,16.1,27.9,16.1,27.9s16.1-9.6,16.1-27.9C101.8,312.6,99.8,306.2,85.7,306.2z"></path>
<path class="big-fire-3" style="fill:#F25A7E;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M85.7,311.9
c-7.4,0-8.4,3.3-8.4,6.4c0,9.5,8.4,14.5,8.4,14.5s8.4-5,8.4-14.5C94,315.2,93,311.9,85.7,311.9z"></path>
<g>
<path class="small-fire" style="fill:#EF948F;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M138.2,318.6
c-9.8,0-11.1,4.5-11.1,8.6c0,12.6,11.1,19.3,11.1,19.3s11.1-6.7,11.1-19.3C149.3,323,148,318.6,138.2,318.6z"></path>
</g>
<g>
<path class="small-fire" style="fill:#EF948F;stroke:#2F2442;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10" d="M33.2,318.6
c-9.8,0-11.1,4.5-11.1,8.6c0,12.6,11.1,19.3,11.1,19.3s11.1-6.7,11.1-19.3C44.3,323,43,318.6,33.2,318.6z"></path>
</g>
</svg>
</div>
<div id="clouds-wrap" style="margin-bottom: 37px; transform: translate3d(0px, 0px, 0px);">
<div id="large-clouds">
<svg version="1.1" id="Layer_6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 525 1082.1" style="enable-background:new 0 0 525 1082.1" xml:space="preserve">
<g>
<polygon style="fill:#F7F5F9" points="477.2,76.8 387.3,60.3 316.8,47.1 241.4,37.2 154.1,53.8 46.1,72.7 46.1,1082.1
477.2,1082.1 "></polygon>
<circle style="fill:#F7F5F9" cx="270" cy="43.4" r="24.6"></circle>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M245.4,43.4c0-13.6,11-24.6,24.6-24.6s24.6,11,24.6,24.6"></path>
<circle style="fill:#F7F5F9" cx="235.8" cy="32.8" r="17.8"></circle>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M219.1,39c-0.7-1.9-1.1-4-1.1-6.2c0-9.8,8-17.8,17.8-17.8c8.3,0,15.2,5.6,17.2,13.3"></path>
<circle style="fill:#F7F5F9" cx="298.2" cy="30" r="16.6"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M281.6,30c0-9.2,7.4-16.6,16.6-16.6s16.6,7.4,16.6,16.6"></path>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M281.6,30"></path>
<ellipse transform="matrix(0.2326 -0.9726 0.9726 0.2326 50.2449 150.4527)" style="fill:#F7F5F9" cx="120.5" cy="43.4" rx="32.7" ry="32.7"></ellipse>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M89.2,34.2c4-13.6,16.5-23.4,31.3-23.4c18,0,32.7,14.6,32.7,32.7"></path>
<circle style="fill:#F7F5F9" cx="163.6" cy="49.9" r="22.8"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M140.8,49.9c0-12.6,10.2-22.8,22.8-22.8s22.8,10.2,22.8,22.8"></path>
<circle style="fill:#F7F5F9" cx="192.5" cy="40.3" r="15.5"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M177.1,38.2c1-7.5,7.5-13.4,15.4-13.4c7.2,0,13.2,4.9,15,11.5"></path>
<circle style="fill:#F7F5F9" cx="211.8" cy="43.4" r="8.4"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M205.2,38.3c1.5-2,3.9-3.2,6.6-3.2c3.1,0,5.8,1.7,7.3,4.2"></path>
<circle style="fill:#F7F5F9" cx="324.9" cy="46.6" r="22"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M310.4,30c3.9-3.4,9-5.5,14.5-5.5c12.2,0,22,9.9,22,22c0,2.6-0.5,5.1-1.3,7.4"></path>
<circle style="fill:#F7F5F9" cx="459" cy="68.6" r="16.5"></circle>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" x1="516.6" y1="68.6" x2="523.5" y2="68.6"></line>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M444.2,61.4c2.7-5.5,8.3-9.3,14.8-9.3c9.1,0,16.5,7.4,16.5,16.5h34.8"></path>
<circle style="fill:#F7F5F9" cx="414.8" cy="64" r="33.8"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M381,64c0-18.7,15.1-33.8,33.8-33.8c18.7,0,33.8,15.1,33.8,33.8"></path>
<circle style="fill:#F7F5F9" cx="387.3" cy="34" r="32.5"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M356.2,43.4c-0.9-3-1.4-6.2-1.4-9.4c0-17.9,14.6-32.5,32.5-32.5s32.5,14.6,32.5,32.5c0,5.8-1.5,11.2-4.2,15.9"></path>
<circle style="fill:#F7F5F9" cx="355.4" cy="66" r="26.8"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M336.5,47.1c4.8-4.8,11.5-7.8,18.9-7.8c3.7,0,7.2,0.7,10.4,2.1"></path>
<circle style="fill:#F7F5F9" cx="75.9" cy="53.8" r="23.7"></circle>
<path style="fill:#F7F5F9;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M52.3,53.8c0-13.1,10.6-23.7,23.7-23.7c4.9,0,9.5,1.5,13.2,4"></path>
<circle style="fill:#F7F5F9" cx="51.3" cy="68.6" r="13.7"></circle>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" x1="7.2" y1="68.6" x2="1.5" y2="68.6"></line>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M56.4,55.9c-1.6-0.6-3.3-1-5.1-1c-7.5,0-13.7,6.1-13.7,13.7h-24"></path>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M367,21.7c4.2-6.9,11.7-11.4,20.3-11.4"></path>
<path style="fill:none;stroke:#2F2442;stroke-width:3.2867;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M100.4,30.7c4.8-7.5,13.6-11.9,22.7-10.9"></path>
</g>
</svg>
</div>
<div id="cloud-1">
<svg version="1.1" id="Layer_7" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 204 87.6" style="enable-background:new 0 0 204 87.6" xml:space="preserve">
<g>
<circle style="fill:#F7F7F7" cx="52.8" cy="52.6" r="25.8"></circle>
<line style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" x1="10.3" y1="45.2" x2="1.5" y2="45.2"></line>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M78.7,52.6c0-14.3-11.6-25.8-25.8-25.8c-11.7,0-21.5,7.7-24.7,18.4l-11.4,0"></path>
<circle style="fill:#F7F7F7" cx="98.3" cy="37.2" r="35.7"></circle>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M62.7,37.2c0-19.7,16-35.7,35.7-35.7c16,0,29.6,10.6,34.1,25.1"></path>
<circle style="fill:#F7F7F7" cx="145" cy="49.7" r="26.2"></circle>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M126.1,31.6c4.8-5,11.5-8.1,18.9-8.1c14.5,0,26.2,11.7,26.2,26.2"></path>
<circle style="fill:#F7F7F7" cx="172" cy="67.8" r="19.8"></circle>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M158,53.8c3.6-3.6,8.5-5.8,14-5.8c10.9,0,19.8,8.9,19.8,19.8c0,3.2-0.8,6.2-2.1,8.9h12.8"></path>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M74.9,24.5c4.5-8.3,13.3-14,23.4-14"></path>
</g>
</svg>
</div>
<div id="cloud-2">
<svg version="1.1" id="Layer_8" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 148 66.2" style="enable-background:new 0 0 148 66.2" xml:space="preserve">
<g>
<ellipse transform="matrix(0.9339 -0.3576 0.3576 0.9339 -9.8549 45.7334)" style="fill:#F7F7F7" cx="118.7" cy="49.5" rx="13.5" ry="13.5"></ellipse>
<line style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" x1="143" y1="50" x2="146.5" y2="50"></line>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M106.1,54.3c-2.7-7,0.8-14.8,7.8-17.5c7-2.7,14.8,0.8,17.5,7.8c0.7,1.7,1,3.5,0.9,5.3l5,0"></path>
<circle style="fill:#F7F7F7" cx="92.3" cy="44.4" r="21.8"></circle>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M72.9,34.4c3.6-7.1,11-11.9,19.5-11.9c12.1,0,21.8,9.8,21.8,21.8"></path>
<circle style="fill:#F7F7F7" cx="43.4" cy="25.2" r="23.7"></circle>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M21.9,35.3c-1.4-3.1-2.2-6.5-2.2-10.1c0-13.1,10.6-23.7,23.7-23.7s23.7,10.6,23.7,23.7c0,2.5-0.4,4.9-1.1,7.1"></path>
<circle style="fill:#F7F7F7" cx="67.4" cy="44.4" r="16.2"></circle>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M60,30c2.2-1.1,4.7-1.8,7.4-1.8c4.2,0,8,1.6,10.9,4.2"></path>
<circle style="fill:#F7F7F7" cx="19.6" cy="43" r="13.5"></circle>
<path style="fill:none;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M24.2,30.3c-1.4-0.5-3-0.8-4.6-0.8c-7.5,0-13.5,6-13.5,13.5H1.5"></path>
</g>
</svg>
</div>
<div id="cloud-3">
<svg version="1.1" id="Layer_9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 63.2 39.4" style="enable-background:new 0 0 63.2 39.4" xml:space="preserve">
<g>
<circle style="fill:#F7F7F7" cx="41.2" cy="25.9" r="13.5"></circle>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M27.7,25.9c0-7.5,6-13.5,13.5-13.5c7.5,0,13.5,6,13.5,13.5h7"></path>
<circle style="fill:#F7F7F7" cx="19.2" cy="19.2" r="17.7"></circle>
<path style="fill:#F7F7F7;stroke:#2F2442;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" d="
M3.5,27.3c-1.3-2.4-2-5.2-2-8.1c0-9.8,7.9-17.7,17.7-17.7c9.8,0,17.7,7.9,17.7,17.7"></path>
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="hero-xs visible-xs-block">
<div class="col-xs-12 text-xs-center text-xs-section">
<h1 class="hero-header">Welcome to OWASP <span>VIT Chennai!</span></h1>
<p class="hero-text">Started off with a few people having cyber safety in mind, the chapter now boasts a big gathering of members and associates alike. Join us on our mission to make the cyber space a safer place.</p>
<a href="#core" class="rocket-btn">Explore!</a>
</div>
<div class="col-xs-12 rocket-xs-section"><img class="responsive-img" src="assets/rocket-mobile.png" alt="rocket"></div>
</div>
</div>
</div>
</section>
<main style="margin-top: 72px; margin-bottom: 436.4px; box-shadow: rgba(0, 0, 0, 0.49) 0px 9px 28px -2px;">
<section class="dark-section features-section animated-section animated" id="core">
<div class="container">
<div class="row">
<div class="section-header animated fadeIn" data-anim-queue="1" data-anim-type="fadeIn" style="opacity: 0;">
<h3 class="section-title">Core Values</h3>
<p class="section-subtitle">The Open Web Application Security Project (OWASP) is a nonprofit foundation that works to improve the security of software.</p>
<hr data-anim-queue="2" data-anim-type="fadeInUp" style="opacity: 0;" class="animated fadeInUp">
</div>
</div>
<div class="row">
<div class="features-inline animated fadeInUp" data-anim-queue="2" data-anim-type="fadeInUp" style="opacity: 0;">
<div class="col-sm-6 col-md-3">
<div class="feature">
<div class="icon-wrapper"><img src="assets/features-icon-ufo.svg" alt=""></div>
<h4>Open</h4>
<p>Everything at OWASP is radically transparent from our finances to our code.</p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="feature">
<div class="icon-wrapper"><img src="assets/features-icon-astronaut.svg" alt=""></div>
<h4>Innovative</h4>
<p>We encourage and support innovation and experiments for solutions to software security challenges.</p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="feature">
<div class="icon-wrapper"><img src="assets/features-icon-telescope.svg" alt=""></div>
<h4>Global</h4>
<p>Anyone around the world is encouraged to participate in the OWASP community.</p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="feature">
<div class="icon-wrapper"><img src="assets/features-icon-satellite.svg" alt=""></div>
<h4>Integrity</h4>
<p>Our community is respectful, supportive, truthful, and vendor neutral.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="light-section animated-section animated">
<div class="container">
<div class="row">
<div class="section-header animated fadeIn" data-anim-queue="1" data-anim-type="fadeIn" style="opacity: 0;">
<h3 class="section-title">Our history</h3>
<p class="section-subtitle">The OWASP VIT Student Chapter was formed in 2016 and ever since it’s had one aim only, spreading awareness about cyber security and malware as well as ransomware threats in society and circles of students and teaching them how to deploy counter measures through various events and undertakings.</p>
<hr>
</div>
</div>
<div class="row">
<div class="ss-timeline">
<div class="timeline-block first-block">
<div class="timeline-planet-wrap">
<div id="sun-wrap" class="planet">
<svg version="1.1" id="sun_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 75 75" style="enable-background:new 0 0 75 75" xml:space="preserve">
<g id="sun-rays">
<path class="ss-change-stroke" style="fill:none;stroke:#2F2442;stroke-width:5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0,9.991,0,0,0,0" d="
M37.5,72.5c-19.3,0-35-15.7-35-35c0-19.3,15.7-35,35-35c19.3,0,35,15.7,35,35C72.5,56.8,56.8,72.5,37.5,72.5z"></path>
</g>
<circle class="ss-change-fill" id="sun-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="37.5" cy="37.5" r="25"></circle>
</svg>
</div>
</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="mercury-wrap" class="planet">
<svg version="1.1" id="Layer_01" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 22 22" style="enable-background:new 0 0 22 22" xml:space="preserve">
<circle class="ss-change-fill" id="mercury" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="11" cy="11" r="10"></circle>
</svg>
</div>
</div>
<div class="timeline-content left animated fadeInUp" data-anim-queue="2" data-anim-type="fadeInUp" style="opacity: 0;"><span>August, 2016</span> OWASP VITCC Student Chapter Created</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="venus-wrap" class="planet">
<svg version="1.1" id="Layer_02" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32" xml:space="preserve">
<g id="venus">
<circle class="ss-change-fill" id="venus-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="16" cy="16" r="15"></circle>
<line class="ss-change-stroke" id="venus-line-03" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:85%,25%" x1="28.4" y1="7.6" x2="3.6" y2="7.6"></line>
<line class="ss-change-stroke" id="venus-line-02" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:76%,26%" x1="1" y1="16" x2="31" y2="16"></line>
<line class="ss-change-stroke" id="venus-line-01" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:53%,19%" x1="2.9" y1="23.4" x2="29.1" y2="23.4"></line>
</g>
</svg>
</div>
</div>
<div class="timeline-content right animated fadeInUp" data-anim-queue="3" data-anim-type="fadeInUp" style="opacity: 0;"><span>August, 2016</span> Sharad Agrawal becomes the First President of the Student Chapter.</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="earth-wrap" class="planet">
<svg version="1.1" id="Layer_03" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 37 37" style="enable-background:new 0 0 37 37" xml:space="preserve">
<g id="earth">
<circle class="ss-change-fill" id="earth-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="18.5" cy="18.5" r="17.5"></circle>
<polyline class="ss-change-stroke" id="earth-line-01" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" points="
26.4,2.9 22.1,8.7 24.6,13 21.1,18.5 29,18.5 29,24 32.5,24.7 31.2,30.5 "></polyline>
<polyline class="ss-change-stroke" id="earth-line-02" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" points="
1,17.7 5.5,11.5 11.8,11.5 10.3,14.6 15.1,16.7 12.7,19.8 9.1,24 11,27.7 16.6,30.5 12.7,32.5 18.5,36 "></polyline>
</g>
</svg>
</div>
</div>
<div class="timeline-content left animated fadeInUp" data-anim-queue="4" data-anim-type="fadeInUp" style="opacity: 0;"><span>November 28, 2017</span> Aditya Dobriyal becomes the Second President of the Student Chapter.</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="mars-wrap" class="planet">
<svg version="1.1" id="Layer_04" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-284 376 42 42" style="enable-background:new -284 376 42 42" xml:space="preserve">
<g id="mars">
<circle class="ss-change-fill" id="mars-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="-263" cy="397" r="20"></circle>
<g id="mars-lines">
<path class="ss-change-stroke" id="mars-line-05" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-277,383c0.6,0.2,1.3,0.3,2.3,0.3c3.9,0,3.9-2,7.8-2c3.9,0,3.9,2,7.8,2c3.9,0,3.9-2,7.8-2c0.2,0,0.3,0,0.4,0"></path>
<path class="ss-change-stroke" id="mars-line-04" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-280.8,388.8c2.4,0.5,2.8,1.8,6.2,1.8c3.9,0,3.9-2,7.8-2c3.9,0,3.9,2,7.8,2s3.9-2,7.8-2c3.5,0,3.9,1.6,6.8,2"></path>
<path class="ss-change-stroke" id="mars-line-03" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-243.4,398c-3.9,0-3.9-2-7.8-2s-3.9,2-7.8,2c-3.9,0-3.9-2-7.8-2c-3.9,0-3.9,2-7.8,2s-3.9-2-7.8-2"></path>
<path class="ss-change-stroke" id="mars-line-02" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-245.2,405.2c-2.4-0.5-2.8-1.8-6.1-1.8c-3.9,0-3.9,2-7.8,2c-3.9,0-3.9-2-7.8-2c-3.9,0-3.9,2-7.8,2c-3.5,0-3.9-1.6-6.9-2l0,0"></path>
<path class="ss-change-stroke" id="mars-line-01" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-275.1,412.7c0.1,0,0.3,0,0.4,0c3.9,0,3.9-2,7.8-2c3.9,0,3.9,2,7.8,2c3.9,0,3.9-2,7.8-2c1,0,1.7,0.1,2.3,0.3"></path>
</g>
</g>
</svg>
</div>
</div>
<div class="timeline-content right animated fadeInUp" data-anim-queue="5" data-anim-type="fadeInUp" style="opacity: 0;"><span>November, 2018</span>ICRTAC-CPS 2018 conducted by OWASP.</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="jupiter-wrap" class="planet">
<svg version="1.1" id="Layer_05" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-279 371 52 52" style="enable-background:new -279 371 52 52" xml:space="preserve">
<g id="jupiter">
<path class="ss-change-fill" id="jupiter-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" d="M-228,397
c0,2.6-0.4,5.1-1.1,7.5c-3.2,10.1-12.7,17.5-23.9,17.5c-13.8,0-25-11.2-25-25c0-3.9,0.9-7.5,2.5-10.8c1.4-3,3.4-5.6,5.9-7.8
c4.4-4,10.2-6.4,16.6-6.4c12.7,0,23.2,9.5,24.8,21.8C-228.1,394.8-228,395.9-228,397z"></path>
<path class="ss-change-stroke" id="jupiter-line-06" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:26,3" d="
M-229.1,404.5c-11.3-0.2-20.1-2.5-20.1-5.4s9.4-5.3,21-5.4"></path>
<path class="ss-change-stroke" id="jupiter-line-05" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:26,3" d="
M-269.6,378.4c6.1,0.4,10.5,2,10.5,3.9c0,2.2-6.2,4-13.9,4c-0.9,0-1.7,0-2.5-0.1"></path>
<path class="ss-change-stroke" id="jupiter-line-04" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:26,3" d="
M-277.7,395.8c0,0,14.5,2.2,26.2-4c10.6-5.6,18.7-5.7,21-5.6"></path>
<path class="ss-change-stroke" id="jupiter-line-03" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:26,3" d="
M-232.9,411.9c-2.6-1.5-22.9-8.7-43.5-6.7"></path>
<path class="ss-change-stroke" id="jupiter-line-02" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:26,3" d="
M-241.5,418.5c0,0-11.6-7.3-30.2-5.2"></path>
<path class="ss-change-stroke" id="jupiter-line-01" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:26,3" d="
M-235.1,379.6c-3.5,1.1-14.3,2-24.1-6.8"></path>
</g>
</svg>
</div>
</div>
<div class="timeline-content left animated fadeInUp" data-anim-queue="5" data-anim-type="fadeInUp" style="opacity: 0;"><span>December 7, 2018</span> Rajdeep Singh becomes the Third President of the Student Chapter.</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="saturn-wrap" class="planet">
<svg version="1.1" id="Layer_06" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 56.1 42" style="enable-background:new 0 0 56.1 42" xml:space="preserve">
<g id="saturn">
<circle class="ss-change-fill" id="saturn-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="28.2" cy="21" r="20"></circle>
<path class="ss-change-stroke" id="saturn-ring" style="fill:none;stroke:#2F2442;stroke-width:1.8488;stroke-miterlimit:10" d="M44.2,9
c6-0.4,10.1,0.4,10.9,2.7c1.4,4.2-9.6,11.5-24.5,16.4C15.6,32.9,2.4,33.4,1,29.3c-0.7-2.2,2.1-5.4,7.2-8.6"></path>
</g>
</svg>
</div>
</div>
<div class="timeline-content right animated fadeInUp" data-anim-queue="6" data-anim-type="fadeInUp" style="opacity: 0;"><span>November, 2019</span> ICRTAC-DTI 2019 conducted by OWASP.</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="mars-wrap" class="planet">
<svg version="1.1" id="Layer_04" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-284 376 42 42" style="enable-background:new -284 376 42 42" xml:space="preserve">
<g id="mars">
<circle class="ss-change-fill" id="mars-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="-263" cy="397" r="20"></circle>
<g id="mars-lines">
<path class="ss-change-stroke" id="mars-line-05" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-277,383c0.6,0.2,1.3,0.3,2.3,0.3c3.9,0,3.9-2,7.8-2c3.9,0,3.9,2,7.8,2c3.9,0,3.9-2,7.8-2c0.2,0,0.3,0,0.4,0"></path>
<path class="ss-change-stroke" id="mars-line-04" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-280.8,388.8c2.4,0.5,2.8,1.8,6.2,1.8c3.9,0,3.9-2,7.8-2c3.9,0,3.9,2,7.8,2s3.9-2,7.8-2c3.5,0,3.9,1.6,6.8,2"></path>
<path class="ss-change-stroke" id="mars-line-03" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-243.4,398c-3.9,0-3.9-2-7.8-2s-3.9,2-7.8,2c-3.9,0-3.9-2-7.8-2c-3.9,0-3.9,2-7.8,2s-3.9-2-7.8-2"></path>
<path class="ss-change-stroke" id="mars-line-02" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-245.2,405.2c-2.4-0.5-2.8-1.8-6.1-1.8c-3.9,0-3.9,2-7.8,2c-3.9,0-3.9-2-7.8-2c-3.9,0-3.9,2-7.8,2c-3.5,0-3.9-1.6-6.9-2l0,0"></path>
<path class="ss-change-stroke" id="mars-line-01" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10" d="
M-275.1,412.7c0.1,0,0.3,0,0.4,0c3.9,0,3.9-2,7.8-2c3.9,0,3.9,2,7.8,2c3.9,0,3.9-2,7.8-2c1,0,1.7,0.1,2.3,0.3"></path>
</g>
</g>
</svg>
</div>
</div>
<div class="timeline-content left animated fadeInUp" data-anim-queue="7" data-anim-type="fadeInUp" style="opacity: 0;"><span>December 17, 2019</span> Arnav Tripathy becomes the Fourth President of the Student Chapter.</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="uranus-wrap" class="planet">
<svg version="1.1" id="Layer_07" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-289 381 32 32" style="enable-background:new -289 381 32 32" xml:space="preserve">
<g id="uranus">
<circle class="ss-change-fill" id="uranus-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="-273" cy="397" r="15"></circle>
<line class="ss-change-stroke" id="uranus-line-06" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:9,5" x1="-262.5" y1="386.5" x2="-283.3" y2="386.5"></line>
<line class="ss-change-stroke" id="uranus-line-05" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:20,11" x1="-259.6" y1="391" x2="-286.2" y2="391"></line>
<line class="ss-change-stroke" id="uranus-line-04" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:9,21" x1="-287.4" y1="395.3" x2="-258.4" y2="395.3"></line>
<line class="ss-change-stroke" id="uranus-line-03" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:15,15" x1="-287.4" y1="400.2" x2="-259" y2="400.2"></line>
<line class="ss-change-stroke" id="uranus-line-02" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:12,14" x1="-284.9" y1="405.9" x2="-261.1" y2="405.9"></line>
<line class="ss-change-stroke" id="uranus-line-01" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:11,20" x1="-260.1" y1="403.1" x2="-286.4" y2="403.1"></line>
</g>
</svg>
</div>
</div>
<div class="timeline-content right animated fadeInUp" data-anim-queue="8" data-anim-type="fadeInUp" style="opacity: 0;"><span>February 14, 2020</span> OWASP VITCC conducts a hackathon with 100+ participants!</div>
</div>
<div class="timeline-block">
<div class="timeline-planet-wrap">
<div id="neptune-wrap" class="planet">
<svg version="1.1" id="Layer_08" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-294 386 22 22" style="enable-background:new -294 386 22 22" xml:space="preserve">
<g id="neptune">
<circle class="ss-change-fill" id="neptune-circle" style="fill:#FFFFFF;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" cx="-283" cy="397" r="10"></circle>
<path class="ss-change-stroke" id="neptune-circle-01" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" d="M-292.8,398.8
c1-1.1,2.5-1.8,4.1-1.8c3,0,5.5,2.5,5.5,5.5c0,1.7-0.8,3.2-2,4.2"></path>
<path class="ss-change-stroke" id="neptune-circle-02" style="fill:none;stroke:#2F2442;stroke-width:2;stroke-miterlimit:10" d="M-273.4,394.4
c-0.8,1.1-2.1,1.9-3.7,1.9c-2.5,0-4.5-2-4.5-4.5c0-1.7,1-3.2,2.4-4h0"></path>
</g>
</svg>
</div>
</div>
<div class="timeline-content left animated fadeInUp" data-anim-queue="7" data-anim-type="fadeInUp" style="opacity: 0;"><span>April 31, 2021</span> OWASP VITCC conducts TetraFlip, it's largest ever Hackathon, with 500+ participants.</div>
</div>
</div>
</div>
</div>
</section>
<section class="dark-section counter-section animated-section animated">
<div class="container">
<div class="row">
<div class="col-xs-6 col-md-3">
<div class="counter-block animated fadeInUp" data-anim-queue="1" data-anim-type="fadeInUp" style="opacity: 0;">
<div class="counter-icon"><i class="fa fa-flag-checkered" aria-hidden="true"></i></div>
<h3 class="counter-number">26</h3>
<p class="counter-text">Events</p>
</div>
</div>
<div class="col-xs-6 col-md-3">
<div class="counter-block animated fadeInUp" data-anim-queue="2" data-anim-type="fadeInUp" style="opacity: 0;">
<div class="counter-icon"><i class="fa fa-object-group" aria-hidden="true"></i></div>
<h3 class="counter-number">9</h3>
<p class="counter-text">Finished Projects</p>
</div>
</div>
<div class="col-xs-6 col-md-3">
<div class="counter-block animated fadeInUp" data-anim-queue="3" data-anim-type="fadeInUp" style="opacity: 0;">
<div class="counter-icon"><i class="fa fa-users" aria-hidden="true"></i></div>
<h3 class="counter-number">98</h3>
<p class="counter-text">Chapter Members</p>
</div>
</div>
<div class="col-xs-6 col-md-3">
<div class="counter-block animated fadeInUp" data-anim-queue="4" data-anim-type="fadeInUp" style="opacity: 0;">
<div class="counter-icon"><i class="fa fa-globe" aria-hidden="true"></i></div>
<h3 class="counter-number">1000</h3>
<p class="counter-text">Students Mentored</p>
</div>
</div>
</div>
</div>
</section>
<section class="white-section portfolio-section animated-section animated">
<div class="container">
<div class="row">
<div class="section-header animated fadeInUp" data-anim-queue="1" data-anim-type="fadeInUp" style="opacity: 0;">
<h3 class="section-title">Our Events</h3>
<p class="section-subtitle">We are an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. </p>
<hr>
</div>
</div>
<div class="row animated fadeInUp" data-anim-queue="2" data-anim-type="fadeInUp" style="opacity: 0;">
<div class="portfolio-filters">
<ul class="inline-list">
<li class="portfolio-filter active" data-filter="all">All</li>
<li class="portfolio-filter" data-filter="inauguration">Inauguration</li>
<li class="portfolio-filter" data-filter="opengov">OpenGov Hackathon</li>
<li class="portfolio-filter" data-filter="malware">Malware Analysis</li>
<li class="portfolio-filter" data-filter="sop">Student Outreach Programs</li>
<li class="portfolio-filter" data-filter="icrtac-2018">ICRTAC-2018</li>
<li class="portfolio-filter" data-filter="icrtac-2019">ICRTAC-2019</li>
<li class="portfolio-filter" data-filter="2020hack">2020 Hackathon</li>
<li class="portfolio-filter" data-filter="tetraflip">TetraFlip</li>
</ul>
</div>
</div>
<div class="row animated fadeInUp" data-anim-queue="3" data-anim-type="fadeInUp" style="opacity: 0;">
<div id="portfolio-grid" class="portfolio-masonry portfolio-masonry-3-columns" style="position: relative; height: 1549.95px;">
<div class="grid-sizer"></div>
<div class="portfolio-item all inauguration" style="position: absolute; left: 0%; top: 0px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/inauguration/1.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Inauguration</span> <span class="portfolio-item-name">2016</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item size-2 all inauguration" style="position: absolute; left: 33.2479%; top: 0px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/inauguration/4.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Inauguration</span> <span class="portfolio-item-name">2016</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all inauguration" style="position: absolute; left: 66.5812%; top: 0px;">
<a href="https://neonunicorns.com/html/rocket/index-startup.html#">
<div class="portfolio-item-image"><img src="assets/inauguration/5.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Inauguration</span> <span class="portfolio-item-name">2016</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item size-2 all opengov" style="position: absolute; left: 0%; top: 389px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/opengov/02.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">OpenGov Hackathon</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item size-2 all opengov" style="position: absolute; left: 66.5812%; top: 389px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/opengov/03.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">OpenGov Hackathon</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all opengov" style="position: absolute; left: 33.2479%; top: 769px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/opengov/05.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">OpenGov Hackathon</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all malware" style="position: absolute; left: 0%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/malware/4.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Malware Analysis</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all malware" style="position: absolute; left: 33.2479%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/malware/8.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Malware Analysis</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all malware" style="position: absolute; left: 66.5812%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/malware/9.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Malware Analysis</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all sop" style="position: absolute; left: 0%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/sop/2.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Student Outreach Program</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all sop" style="position: absolute; left: 33.2479%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/sop/3.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Student Outreach Program</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all sop" style="position: absolute; left: 66.5812%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/sop/7.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Student Outreach Program</span> <span class="portfolio-item-name">2017</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all icrtac-2018" style="position: absolute; left: 0%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/icrtac-2018/3.JPG" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">ICRTAC-CPS</span> <span class="portfolio-item-name">2018</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all icrtac-2018" style="position: absolute; left: 33.2479%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/icrtac-2018/4.JPG" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">ICRTAC-CPS</span> <span class="portfolio-item-name">2018</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all icrtac-2018" style="position: absolute; left: 66.5812%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/icrtac-2018/5.JPG" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">ICRTAC-CPS</span> <span class="portfolio-item-name">2018</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all icrtac-2019" style="position: absolute; left: 0%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/icrtac-2019/1.JPG" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">ICRTAC-DTI</span> <span class="portfolio-item-name">2019</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all icrtac-2019" style="position: absolute; left: 33.2479%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/icrtac-2019/2.JPG" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">ICRTAC-DTI</span> <span class="portfolio-item-name">2019</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all icrtac-2019" style="position: absolute; left: 66.5812%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/icrtac-2019/3.JPG" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">ICRTAC-DTI</span> <span class="portfolio-item-name">2019</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all 2020hack" style="position: absolute; left: 0%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/2020hack/1.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Hackathon</span> <span class="portfolio-item-name">2020</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all 2020hack" style="position: absolute; left: 33.2479%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/2020hack/2.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Hackathon</span> <span class="portfolio-item-name">2020</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all 2020hack" style="position: absolute; left: 66.5812%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/2020hack/3.jpg" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Hackathon</span> <span class="portfolio-item-name">2020</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all tetraflip" style="position: absolute; left: 0%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/tetraflip/1.png" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Tetraflip</span> <span class="portfolio-item-name">2021</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all tetraflip" style="position: absolute; left: 33.2479%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/tetraflip/2.png" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Tetraflip</span> <span class="portfolio-item-name">2021</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
<div class="portfolio-item all tetraflip" style="position: absolute; left: 66.5812%; top: 1159px;">
<a href="">
<div class="portfolio-item-image"><img src="assets/tetraflip/3.png" alt=""></div>
<div class="portfolio-item-text"><span class="portfolio-item-description">Tetraflip</span> <span class="portfolio-item-name">2021</span> <span class="portfolio-item-link"><i class="fa fa-link" aria-hidden="true"></i></span></div>
</a>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="fix-footer" style="opacity: 0; z-index: -1; position: fixed;">
<div class="footer-wrapper">
<div class="bottom-bar">
<div class="container">
<div class="row">
<div class="col-md-6 text-align-left text-sm-center">© Copyright 2021 - <a>OWASP VITCC</a>. All Rights Reserved.</div>
<div class="col-md-6 text-align-right text-sm-center">
<ul class="inline-list center-align">
<li><a href="https://twitter.com/owaspvit/"> <img src="assets/icons/twitter-logo.svg" class="twitter-svg" style="width:17px;height:23px;"> </a></li>
<li><a href="https://blog.owaspvit.com/"> <img src="assets/icons/blogger-logo.svg" class="blogger-svg" style="width:17px;height:23px;"> </a></li>
<li><a href="https://www.linkedin.com/company/owasp-vit-student-chapter/"> <img src="assets/icons/linkedin-logo.svg" class="linkedin-svg" style="width:17px;height:23px;"> </a></li>
<li><a href="https://github.com/owaspvit/"> <img src="assets/icons/github-logo.svg" class="github-svg" style="width:17px;height:23px;"> </a></li>
<li><a href="https://instagram.com/owaspvit/"> <img src="assets/icons/instagram-logo.svg" class="instagram-svg" style="width:17px;height:23px;"> </a></li>
<li><a href="https://medium.owaspvit.com/"> <img src="assets/icons/medium-logo.svg" class="medium-svg" style="width:17px;height:23px;"> </a></li>
<li><a href="https://discord.gg/9RyHCQgjAv"> <img src="assets/icons/discord-logo.svg" class="discord-svg" style="width:17px;height:23px;"> </a></li>
<li><a href="https://facebook.com/owaspvit/"> <img src="assets/icons/facebook-logo.svg" class="facebook-svg" style="width:17px;height:23px;"> </a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<div id="scrollToTop" class="scrollToTop">
<div class="scrollToTop-circle">
<div class="scrollToTop-icon"></div>
</div>
</div>
<script src="assets/loader.js"></script>
<script src="assets/assets.min.js"></script>
<script src="assets/main.min.js"></script>
</body>
</html>