-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
729 lines (604 loc) · 37 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Homepage</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta charset="utf-8">
<meta name="author" content="Harry Boo">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />-->
<meta name="viewport" content="width=1300" />
<!-- Favicons -->
<link rel="shortcut icon" href="assets/img/logo/bi0s-favicon.png">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/apple-touch-icon-114x114.png">
<!-- Load Core CSS
=====================================-->
<link rel="stylesheet" href="assets/css/core/bootstrap.css">
<link rel="stylesheet" href="assets/css/core/animate.min.css">
<!-- Load Main CSS
=====================================-->
<link rel="stylesheet" href="assets/css/main/main.css">
<link rel="stylesheet" href="assets/css/main/setting.css">
<link rel="stylesheet" href="assets/css/main/hover.css">
<!-- Load Magnific Popup CSS
=====================================-->
<link rel="stylesheet" href="assets/css/magnific/magic.min.css">
<link rel="stylesheet" href="assets/css/magnific/magnific-popup.css">
<link rel="stylesheet" href="assets/css/magnific/magnific-popup-zoom-gallery.css">
<!-- Load OWL Carousel CSS
=====================================-->
<link rel="stylesheet" href="assets/css/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="assets/css/owl-carousel/owl.theme.css">
<link rel="stylesheet" href="assets/css/owl-carousel/owl.transitions.css">
<!-- Load Color CSS - Please uncomment to apply the color.
=====================================
<link rel="stylesheet" href="assets/css/color/blue.css">
<link rel="stylesheet" href="assets/css/color/brown.css">
<link rel="stylesheet" href="assets/css/color/cyan.css">
<link rel="stylesheet" href="assets/css/color/dark.css">
<link rel="stylesheet" href="assets/css/color/green.css">
<link rel="stylesheet" href="assets/css/color/orange.css">
<link rel="stylesheet" href="assets/css/color/purple.css">
<link rel="stylesheet" href="assets/css/color/pink.css">
<link rel="stylesheet" href="assets/css/color/red.css">
<link rel="stylesheet" href="assets/css/color/yellow.css">-->
<link rel="stylesheet" href="assets/css/color/pasific.css">
<!-- Load Fontbase Icons - Please Uncomment to use linea icons
=====================================
<link rel="stylesheet" href="assets/css/icon/linea-arrows-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-basic-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-basic-elaboration-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-ecommerce-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-music-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-software-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-weather-10.css">-->
<link rel="stylesheet" href="assets/css/icon/font-awesome.css">
<link rel="stylesheet" href="assets/css/icon/et-line-font.css">
<!-- Load JS
HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries
WARNING: Respond.js doesn't work if you view the page via file://
=====================================-->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar" data-offset="100">
<!-- Page Loader
===================================== -->
<div id="pageloader">
<div class="loader-item">
<img src="assets/img/other/puff.svg" alt="page loader">
</div>
</div>
<a href="#page-top" class="go-to-top">
<i class="fa fa-long-arrow-up"></i>
</a>
<!-- Navigation Area
===================================== -->
<nav class="navbar navbar-pasific navbar-op navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#page-top"><img src="assets/img/logo/logo-default.png" width=30px height=30px alt="logo">bi0s</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav mr20">
<li class="hidden"><a href="#page-top"></a></li>
<li><a href="index.html#welcome">About</a></li>
<li><a href="index.html#fields">Fields</a></li>
<li><a href="team.html" onclick="parent.location='team.html'">Team</a></li>
<li><a href="index.html#portfolioGrid">Mentors</a></li>
<li><a href="trainings.html" onclick="parent.location='trainings.html'">Trainings</a></li>
<li><a href="index.html#contact">Contact</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLScpyrgwESvluonYKNnoYUVc_52CYwM0AYvcq6mSyr51fgysmA/viewform?usp=sf_link" onclick="window.open('https://docs.google.com/forms/d/e/1FAIpQLScpyrgwESvluonYKNnoYUVc_52CYwM0AYvcq6mSyr51fgysmA/viewform?usp=sf_link')">JOIN US</a></li>
</ul>
</div>
</div>
</nav>
<!--Login Modal Dialogue Box DELETED-->
<!--Search Modal Dialogue Box DELETED-->
<!-- Canvas Area
===================================== -->
<header class="intro" style="background:url(assets/img/bg/logo.png) 50% 50% no-repeat;background-size:auto 65%;background-color:black;">
<div id="particles-js1"></div>
<!--
<div class="intro-body">
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-hea ding-big2 text-capitalize font-pacifico mt-100 color-light animated" data-animation="fadeInUp" data-animation-delay="100">
<span class="rotate">Pasific Winter Season, Modern Web Template, Responsive Ready</span>
</h1>
<p class="intro-text mt25 color-gray animated" data-animation="fadeInUp" data-animation-delay="200">The simplest way to create website <br>and make your dream live.</p>
<a class="button button-pasific button-lg hover-ripple-out animated" data-animation="fadeInUp" data-animation-delay="300">Purchase Now</a>
</div>
</div>
</div>
-->
<div class="intro-direction">
<a href="#welcome">
<div class="mouse-icon"><div class="wheel"></div></div>
</a>
</div>
</div>
</header>
<!-- Welcome Area
===================================== -->
<div id="welcome" class="pt75 bg-dark31" style="background-image: url(assets/img/bg/14.jpeg);background-repeat: no-repeat;background-size: cover; ">
<div class="container">
<div class="row">
<!-- title start -->
<div class="col-md-12 text-center">
<h1 class="font-size-normal color-light">
<small class="color-pasific alpha10">Welcome to bi0s</small>
ABOUT bi0s
<small class="heading heading-solid center-block"></small>
</h1>
</div>
<!-- title end -->
<!-- title description start -->
<div class="col-md-8 col-md-offset-2 text-center">
<p class="color-light alpha6">
<p class="color-">
<span class="lead color-light" style="font-size: 2em;font-family: 'Lato';"><br>Team bi0s from Amrita Vishwa Vidyapeetham is a well-established group of computer security enthusiasts
focusing on various areas including but not limited to web application security, computer forensics, binary exploitation, reverse
engineering, hardware security, cryptography and Android security. bi0s is largely a CTF team actively taking part in the international CTFs round the
year besides carrying out research on security issues in the real world. Fuelled by the urge for community service, bi0s has been
organizing workshops and educating the masses about the need for cyber security.</span><br><br>
</p>
</div>
<!-- title description end -->
</div>
<div class="row mt50">
</div>
</div>
</div>
<!-- Portfolio Area
===================================== -->
<!-- Fields Area
===================================== -->
<div id="logo ">
<link href="assets/css/core/decorate.css" rel="stylesheet">
<div class="c-logo1-part"><!--c-logo-part-start-->
<div class="container">
<ul>
</ul>
</div>
</div>
</div>
<div id="fields" class="bg-dark3 pt75 pb100">
<div class="container">
<div class="row">
<!-- title start -->
<div class="col-md-12 text-center">
<h1 class="font-size-normal color-light">
<small class="color-pasific alpha10"></small>
Fields<br>
<small class="heading heading-solid center-block"></small>
</h1>
</div>
<!-- title end -->
<!-- title description start -->
<!--<div class="col-md-8 col-md-offset-2 text-center">
<p class="color-light alpha6">
<span class="lead color-light"><strong>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium totam rem aperiam
eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta.</strong></span>
</p>
</div>-->
<!-- title description end -->
</div>
<!-- title and short description end -->
<!--<div class="row">
<div class="col-md-10 col-md-offset-1 pt50 pb75">
<img src="assets/img/other/img-other-18.png" alt="service" class="img-responsive center-block">
</div>
</div>-->
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-icon-o content-box-left-icon">
<i class="fa fa-gear color-pasific"></i>
<h5 class="color-light">WEB APPLICATION SECURITY
</h5>
<p>A group of people who have proven their worth through multiple CVEs & Bug-Bountie.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-icon-o content-box-left-icon">
<i class="fa fa-code color-green"></i>
<h5 class="color-light">
BINARY EXPLOITATION</h5>
<p>Team of aggressive tacklers finding the vulnerabilities at the depths of softwares and libraries.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-icon-o content-box-left-icon">
<i class="fa fa-android color-blue"></i>
<h5 class="color-light">ANDROID SECURITY
</h5>
<p>League of enthusiasts unmasking the issues in Android applications and internals.<br><br></p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-icon-o content-box-left-icon">
<i class="fa fa-cogs color-yellow"></i>
<h5 class="color-light">REVERSE ENGINEERING
</h5>
<p>A group of insane people who crack binaries apart 1 bit at a time to uncover the hidden secrets.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-icon-o content-box-left-icon">
<i class="fa fa-search color-purple"></i>
<h5 class="color-light">FORENSICS
</h5>
<p>Unravelling the mysteries of the footprints left behind by the attacks.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-icon-o content-box-left-icon">
<i class="fa fa-wrench color-white"></i>
<h5 class="color-light">HARDWARE
</h5>
<p>A group of hardware enthusiasts breaking and making electronics, perhaps anything with solder in it.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-icon-o content-box-left-icon">
<i class="fa fa-lock color-blue"></i>
<h5 class="color-light">CRYPTO
</h5>
<p>Deciphering highly encrypted messages by cracking complex algorithms.</p>
</div>
</div>
</div>
</div><!-- container end -->
</div><!-- section service end -->
<!-- Info Area
===================================== -->
<div id="info-1" class="pt50 pb50 parallax-window" data-parallax="scroll" data-speed="0.5" data-image-src="assets/img/bg/teambi0s.jpg">
<!--
<div class="container">
<div class="row pt75">
<div class="col-md-12 text-center">
<h1 class="color-black">
<small class="color-black">The best way to be success</small>
Are you ready to be success with us?
</h1>
<a class="button button-md button-red hover-ripple-out mt25">Start Project</a>
<a class="button button-md button-primary hover-fade mt25"><span class="color-light">Contact Us</span></a>
</div>
</div>
</div>
-->
</div>
<!-- Skill Area
===================================== -->
<!-- Fun Fact Area
===================================== -->
<div id="portfolioGrid" class="bg-black">
<div align="center" class="container-fluid bg-dark-video pt30">
<h1 style="color: red">MENTORS</h1>
<h3 style="color: white">Take a closer look into our Mentors.</h3>
<div class="row" style="height: 550px;width: 1288px">
<br>
<div class="col-md-12">
<!-- filters start -->
<!-- filters end -->
<div class="portfolio center-block">
<!-- portfolio item five start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 html joomla wordpress" style="height: 260px;width: 500">
<a href="https://www.linkedin.com/in/seshagiri-prabhu-8ab1721b?authType=NAME_SEARCH&authToken=dXfo&locale=en_US&trk=tyah&trkInfo=clickedVertical%3Amynetwork%2CclickedEntityId%3A69076355%2CauthType%3ANAME_SEARCH%2Cidx%3A1-1-1%2CtarId%3A1472456973256%2Ctas%3Aseshagiri" class="fa fa-linkedin" style="height: 322px;width: 313px; >
<span class=""></span>
</a>
<img src="assets/img/portfolio/thumbs/%20PRABHU.jpg" alt="portfolio woocommerce" class="img-responsive" style="border-radius: 10px;height: 322px;width: 300px;">
<br><br><h3 style="color: #a6e1ec">SESHAGIRI N PRABHU</h3>
<h6 style="color: #a6e1ec">Advisor</h6>
<h5 style="color: #a6e1ec">Research Scholar with 5+ years of experience in Binary Exploitation.</h5>
</div>
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 html joomla wordpress">
<a href="https://www.linkedin.com/in/arvind-s-raj-95738222/" class="fa fa-linkedin" style="height: 322px;width: 313px;>
<span class=""></span>
</a>
<img src="assets/img/portfolio/thumbs/arvind.jpg" alt="portfolio woocommerce" class="img-responsive" style="border-radius: 10px;height: 322px;width: 300px;">
<br><br><h3 style="color: #a6e1ec">ARVIND S RAJ</h3>
<h6 style="color: #a6e1ec">Research Scholar</h6>
<h5 style="color: #a6e1ec">Research Scholar with 5+ experience in Reverse Engineering and Binary Exploitation.</h5>
</div>
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 html joomla wordpress">
<a href="https://www.linkedin.com/in/bithin2007/?authType=name&authToken=RXJg&trk=Skyline_click_NBM&sl=NBM%3B422723127%3A1472456976411%3B0%3B69076355%3B" class="fa fa-linkedin" style="height: 322px;width: 313px;>
<span class=""></span>
</a>
<img src="assets/img/portfolio/thumbs/bithin1.jpg" alt="portfolio woocommerce" class="img-responsive" style="border-radius: 10px;height: 322px;width: 300px;">
<br><br><h3 style="color: #a6e1ec">BITHIN ALANGOT</h3>
<h6 style="color: #a6e1ec">Research Scholar</h6>
<h5 style="color: #a6e1ec">PhD research scholar in Cyber Security.</h5>
</div>
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 html joomla wordpress">
<a href="https://www.linkedin.com/in/renorobert/?authType=NAME_SEARCH&authToken=Ymyo&locale=en_US&trk=tyah&trkInfo=clickedVertical%3Amynetwork%2CclickedEntityId%3A71856241%2CauthType%3ANAME_SEARCH%2Cidx%3A1-1-1%2CtarId%3A1472457301910%2Ctas%3Areno%20" class="fa fa-linkedin" style="height: 322px;width: 313px;>
<span class=""></span>
</a>
<img src="assets/img/portfolio/thumbs/robort.jpg" alt="portfolio woocommerce" class="img-responsive" style="border-radius: 10px;height: 322px;width: 300px;">
<br><br><h3 style="color: #a6e1ec">RENO ROBERT</h3>
<h6 style="color: #a6e1ec ">Security Engineer</h6>
<h5 style="color: #a6e1ec">Working as Security Analyst</h5>
</div>
</div><!-- portfolio end -->
</div><!-- col-md-12 end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- section portfolio end -->
<!-- Features Area
===================================== -->
<div id="client area1">
<link href="assets/css/core/decorate.css" rel="stylesheet">
<section class="main-section client-part" id="client"><!--main-section client-part-start-->
<div class="container">
<b class="quote-right wow fadeInDown delay-03 animated" style="visibility: visible; animation-name: fadeInDown;"><i class="fa-quote-right"></i></b>
<div class="row">
<div class="col-lg-12">
<p class="client-part-haead wow fadeInDown delay-05 animated" style="visibility: visible; animation-name: fadeInDown;">"While solving problems, dig at the roots instead of just hacking at the leaves! "</p>
</div>
</div>
<ul class="client wow fadeIn delay-05s animated" style="visibility: visible; animation-name: fadeIn;">
<li><a>
<img src="assets/img/portfolio/vipin_sir.jpg" alt="" style="height:200px; width:200px;">
<h3>Vipin Pavithran</h3>
<span>Chief Mentor, bi0s.</span>
</a></li>
</ul>
</div>
</section>
</div>
<div id="logo ">
<link href="assets/css/core/decorate.css" rel="stylesheet">
<div class="c-logo-part"><!--c-logo-part-start-->
<div class="container">
<ul>
</ul>
</div>
</div>
</div>
<!-- General Content Area
===================================== -->
<div id="general-content-1" class="bg-dark3 pt100 pb100" style="border-bottom: 1px solid #293648">
<div class="container">
<div class="row">
<!-- left content start -->
<div class="col-md-5">
<div class="general-content">
<h3 class="mb25 color-light">
Meet up
</h3>
<p class="color-light alpha8">The aim of meetups is to bring together cyber security speakers, researchers and enthusiasts to present and share their findings in their respective areas of expertise. The prime focus being cyber security education and awareness, it is community-driven and is always free for both the speakers and the audience. If you are looking for a platform to unveil your explorations, here it is!</p>
<br><br>
<a href="https://meetup.bi0s.in" class="button button-md button-pasific1 hover-ripple-out">Meetup</a>
<div class="clearfix">
</div>
</div>
</div>
<!-- left content end -->
<!-- right content start -->
<div class="col-md-5 col-md-push-1">
<img src="assets/img/other/meetup.png" alt="Meetup image" class="img-responsive pull-right">
</div>
<!-- right content end -->
</div>
</div>
</div>
<!-- General Content Area
===================================== -->
<div id="general-content-2" class="bg-dark31 pt100 pb100">
<div class="container">
<div class="row">
<!-- left content start -->
<div class="col-md-6">
<img src="assets/img/other/InCTF_Logo.png" alt="browser iphone" class="img-responsive center-block">
</div>
<!-- left content end -->
<!-- right content start -->
<div class="col-md-5 col-md-push-1">
<div class="general-content">
<h3 class="mb25 color-light">
<small class="color-red alpha10"></small>
InCTF
</h3>
<p class="color-light alpha8">InCTF, a Capture-The-Flag style contest, is to be viewed as a security exercise which provides an opportunity to learn the fundamentals of Information Security and put them into practice. Hopefully you will have as much fun participating, as we have in organizing the event.</p>
<a href="https://inctf.in/" class="button button-md button-pasific1 hover-ripple-out">InCTF</a>
<div class="clearfix"></div>
</div>
</div>
<!-- right content end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- section general info end -->
<div id="general-content-1" class="bg-dark3 pt100 pb100" style="border-bottom: 1px solid #293648">
<div class="container">
<div class="row">
<!-- left content start -->
<div class="col-md-5">
<div class="general-content">
<h3 class="mb25 color-light">
InCTF Junior
</h3>
<p class="color-light alpha8">A recent report has revealed that a miniscule 0.6% of graduate students are currently working in cyber security while cyber attacks and breaches are manifesting in the country. In order to encourage the youth to participate, they need to be taught at a young age about the importance of computer security. A lot of research have been proven to be the best way to approach this is Capture the Flag style contests. These contests typically simulate real life scenarios that enable participants to develop real world security skills. Many of the countries like USA and China have realized the need for cyber security education and are conducting CTF contests for school students. Having realized the dire need for such a training culture in India, Amrita University is organizing Amrita InCTF Junior, an online Capture the Flag style contest specifically designed to introduce cyber security awareness and training in high school students.</p>
<br><br>
<a href="https://junior.inctf.in/" class="button button-md button-pasific1 hover-ripple-out">InCTF Junior</a>
<div class="clearfix">
</div>
</div>
</div>
<!-- left content end -->
<!-- right content start -->
<div class="col-md-5 col-md-push-1">
<img src="assets/img/other/INCTFj.png" alt="I" class="img-responsive pull-right">
</div>
<!-- right content end -->
</div>
</div>
</div>
<!-- General Content Area
===================================== -->
<!--Price Area DELETED-->
<!--Blog Area DELETED-->
<div id="blogs" class="bg-gray0 pt75 pb75">
<div class="container">
<!-- title start -->
<div class="row text-center mb25">
<h1 class="font-size-normal">
Our Tweets
<small class="heading heading-solid center-block"></small>
</h1>
</div>
<!-- title end -->
<div class="row">
<!-- blog post start -->
<div class="col-md-41 col-sm-6 col-xs-121 mb50">
<div class="blog-one">
<div class="blog-one-header">
<a class="twitter-timeline" data-height="600" data-theme="dark" href="https://twitter.com/teambi0s?ref_src=twsrc%5Etfw">Tweets by teambi0s</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> </div>
</div>
</div>
</div>
</div>
</div>
<!--Newsletter Area Deleted-->
<!--Testimonial Area DELETED-->
<!-- Contact Us Area
=====================================-->
<div id="contact" class="pt100 pb100" style="background-color: black;">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="row">
<!-- title start -->
<div class="col-md-12 mb50">
<h1 class="font-size-normal color-white">
<small class="color-white">Contact Us</small>
Drop Us a Message
</h1>
<h5 class="color-white">Please feel free to say anything to us</h5>
</div>
<!-- title end -->
<!-- contact info start -->
<div class="col-md-3 col-sm-3 col-xs-12">
<span class="icon-map color-white el-icon2x"></span>
<h5 class="color-white"><strong>Address</strong></h5>
<p class="color-white">Amrita University, Amritapuri, Kollam, Kerala.</p>
</div>
<!--
<div class="col-md-3 col-sm-3 col-xs-6">
<span class="icon-megaphone color-white el-icon2x"></span>
<h5 class="color-white"><strong>Phone</strong></h5>
<p class="color-white">123-456-789</p>
</div>
-->
<div class="col-md-3 col-sm-3 col-xs-6">
<span class="icon-envelope color-white el-icon2x"></span>
<h5 class="color-white"><strong>Email</strong></h5>
<p class="color-white">amritabi0s1@gmail.com</p>
</div>
<!-- contact info end -->
</div><!-- row left end -->
</div><!-- col left end -->
<div class="col-md-6">
<div class="contact contact-us-one">
<div class="col-sm-12 col-xs-12 text-center mb20">
<h4 class="pb25 bb-solid-1 text-uppercase">
Get in Touch
<small class="text-lowercase">Please complete the form and we will get back to you.</small>
</h4>
</div>
<form action="https://formspree.io/amritabi0s1@gmail.com" method="POST">
<!-- fullname start -->
<div class="form-group col-md-6 col-sm-6 col-xs-12">
<input class="input-md input-rounded form-control" type="text" name="fname" id="fname" placeholder="Fullname" maxlength="100" required>
</div>
<!-- fullname end -->
<!-- email start -->
<div class="form-group col-md-6 col-sm-6 col-xs-12">
<input class="input-md input-rounded form-control" type="email" name="email" id="email" placeholder="Email Address" maxlength="100" required>
</div>
<!-- email end -->
<!--Website and Security part DELETED-->
<!-- textarea start -->
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<textarea class="form-control" rows="7" placeholder="Your message" name="msg" id="msg" required></textarea>
</div>
<!-- textarea end -->
<!-- button start -->
<div class="form-group col-md-12 col-sm-12 col-xs-12">
<input type="submit" name="sendMessage" id="sendMessage" class="button button-md button-block button-grad-stellar" value="Submit">
</div>
<!-- button end -->
</form>
</div><!-- div contact end -->
</div><!-- col end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- section contact end -->
<!--Client Area DELETED-->
<!-- footer Area
===================================== -->
<div id="footer" class="footer-two pt50 bg-black">
<!--
<div class="col-md-2 col-sm-3 col-xs-12">
<h6 class="font-montserrat text-uppercase color-dark">Social Media</h6>
</div>
-->
<div class="container-fluid pt20">
<div class="container">
<div class="row">
<center>
<div class="social social-two">
<a href="https://twitter.com/teambi0s"><i class="fa fa-twitter color-gray"></i></a>
<a href="https://www.facebook.com/teambi0s"><i class="fa fa-facebook color-gray"></i></a>
<a href="https://github.com/teambi0s"><i class="fa fa-github color-gray"></i></a>
</div><br>
<div>
<p><a href="#" style="color:white;font-size:1em;">bi0s.in</a></p>
</div>
</center>
</div><!-- row end -->
</div><!-- container end -->
</div><!-- container-fluid end -->
</div><!-- footer end -->
<!--Copyright DELETED-->
<!-- JQuery Core
=====================================-->
<script src="assets/js/core/jquery.min.js"></script>
<script src="assets/js/core/bootstrap.min.js"></script>
<!-- Magnific Popup
=====================================-->
<script src="assets/js/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="assets/js/magnific-popup/magnific-popup-zoom-gallery.js"></script>
<!-- Progress Bars
=====================================-->
<script src="assets/js/progress-bar/bootstrap-progressbar.js"></script>
<script src="assets/js/progress-bar/bootstrap-progressbar-main.js"></script>
<!-- Text Rotator
=====================================-->
<script src="assets/js/text-rotator/jquery.simple-text-rotator.min.js"></script>
<!-- Particle JS
=====================================-->
<script src="assets/js/particle/particles.min.js"></script>
<script src="assets/js/particle/particles.main1.js"></script>
<!-- JQuery Main
=====================================-->
<script src="assets/js/main/jquery.appear.js"></script>
<script src="assets/js/main/isotope.pkgd.min.js"></script>
<script src="assets/js/main/parallax.min.js"></script>
<script src="assets/js/main/jquery.countTo.js"></script>
<script src="assets/js/main/owl.carousel.min.js"></script>
<script src="assets/js/main/jquery.sticky.js"></script>
<script src="assets/js/main/imagesloaded.pkgd.min.js"></script>
<script src="assets/js/main/main.js"></script>
</body>
</html>