-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
620 lines (545 loc) · 34.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112995426-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-112995426-1');
</script>
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<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>bi0s-Workshop</title>
<!-- css -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/ionicons/css/ionicons.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body data-spy="scroll" data-target="#site-nav">
<nav id="site-nav" class="navbar navbar-fixed-top navbar-custom">
<div class="container">
<div class="navbar-header">
<!-- logo -->
<div class="site-branding">
<a class="logo" href="#">
<!-- logo image -->
<img src="assets/images/bi0slogo.png" alt="Logo">
</a>
</div>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-items" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- /.navbar-header -->
<div class="collapse navbar-collapse" id="navbar-items">
<ul class="nav navbar-nav navbar-right">
<!-- navigation menu -->
<li class="active"><a data-scroll href="#about">About</a></li>
<li><a data-scroll href="#syllabus">Syllabus</a></li>
<li><a data-scroll href="#training"> Training Portfolio</a></li>
<li><a data-scroll href="#faq">FAQ</a></li>
<li><a data-scroll href="#contact">Contact</a></li>
</ul>
</div>
</div>
<!-- /.container -->
</nav>
<header id="site-header" class="site-header valign-center">
<div class="intro">
<h2>25 March, 2018 / Cochin</h2>
<h1>Web Application Security Workshop</h1>
<p>From #1 Cyber Security team in India</p>
<a class="btn btn-white" href="https://in.explara.com/e/web-application-security-training">Register Now</a>
</div>
</header>
<section id="about" class="section about">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h3 class="section-title">About Us</h3>
<ul class="list-arrow-right">
<li><a href="//bi0s.in"><font color="#0bdec1">Team bi0s</font></a> was established in 2007 and active since then</li>
<li><b>We are the <a href="https://ctftime.org/stats/2017/IN"><font color="#0bdec1">#1</font></a> Cyber Security Team in India</b></li>
<li><b>Pioneer in cybersecurity education in India for over a decade</b></li>
<ul>
<li class="list-arrow-right">We are the first in India to conduct annual Capture the Flag (CTF) contests for </li>
<ul>
<li class="list-arrow-right"> College students in India - <a href="https://inctf.in/"><font color="#0bdec1">InCTF</font></a> (Since 2010)</li>
<li class="list-arrow-right">School students in India - <a href="https://junior.inctf.in/"><font color="#0bdec1">InCTFj</font></a> (Since 2015)</li>
</ul>
<li class="list-arrow-right">Provided training to over 10,000 students</li>
<li class="list-arrow-right">Conducts Cyber Security training camps for school, college students and professionals.</li>
</ul>
<li>bi0s alumnus are spread across the world and works in companies such as Google, Amazon, Flipkart, Cisco, VMWare, FireEye, Okta, SynAck, ERNW, PayPal, paytm etc.</b></li>
<li><b>Expertise in diverse areas such as:</li>
<ul>
<div class="areas-1">
<li class="list-arrow-right"> Mobile Security</li>
<li class="list-arrow-right">IoT</li>
<li class="list-arrow-right">Malware Analysis</li>
<li class="list-arrow-right">Penetration Testing</li>
</div>
<div class="areas-2">
<li class="list-arrow-right">Web Security</li>
<li class="list-arrow-right">Reverse Engineering</li>
<li class="list-arrow-right">Exploitation</li>
<li class="list-arrow-right"> Cyber Forensics</li>
</div>
</ul>
</ul>
<div class="bg-2">
<img class="img-responsive" id="bg-2" src="assets/images/workshop.jpeg">
</div>
</div>
<!-- /.col-sm-6 -->
<style>
</style>
<div class="col-sm-6">
<h3 class="section-title multiple-title">The bi0s/beatr00t Training Edge</h3>
<p>Being <b>#1 CTF team in India</b>, Team bi0s is highly committed and motivated in sharing their excellent skills and knowledge through Cyber Security training. Below are the advantages of bi0s training:</p>
<ul class="list-arrow-right">
<li><b>Expert Trainers</b></li>
<ul>
<li class="list-arrow-right">Our trainers have over 5 years of experience in their field. They are actively involved in security research and training. Many of our trainers have got bug bounties.</li>
</ul>
<li><b>Personal Attention</b></li>
<ul>
<li class="list-arrow-right">We will have expert trainers throughout the session giving personal attention to each attendee. Registration is limited to first 30 participants. Ratio of <b>1:5 trainer to participant</b> throughout the session ensures you get the maximum benefit out of the training.</li>
</ul>
<li><b>Communication</b></li>
<ul>
<li class="list-arrow-right"><b>Pre Workshop</b>: When you register for the training, you shall be provided with extensive instructions and support so that you are clear with the prerequisites. This includes installation of tools, VMs, or other necessary equipments for the workshop. This allows you to kickstart with the training with total focus during the event rather than trying to fix your set-up.</li>
<li class="list-arrow-right"><b>Post Workshop</b>: We will be with you to make sure you are clear with the concepts taught. You will be added in our community channel (IRC/Slack) where there will be more challenges/problems to solve along with support from our trainers. The attendees can improve and train their skills for an extended period of 2 months.</li>
</ul>
<li><b>Capture The Flag Contest </b></li>
<ul>
<li class="list-arrow-right">On the final day of our training, we conduct a real hacking contest where you can evaluate your skills gained. We will also give a score based on your performance for your self assessment.</li>
</ul>
<li><b>Access to our private repository</b></li>
<ul>
<li class="list-arrow-right">Our private repository of a curated list of <b>training material and challenges</b> to practice in a particular domain. You also get support via IRC</li>
</ul>
<li><b>Customised Training at location of your preference</b></li>
<ul>
<li class="list-arrow-right"><a href="https://docs.google.com/forms/d/e/1FAIpQLSezQkkjXV7x7jB7M2XtPMibd_6O1s0QGmqpd-lsSyPpQmeaSw/viewform?usp=sf_link">Contact us</a> for a customised training program that fits your needs at a location convenient for you.</li>
</ul>
</ul>
</div>
<!-- /.col-sm-6 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<section id="facts" class="section bg-image-1 facts text-center">
<div class="container">
<div class="row">
<div class="col-sm-3">
<i class="ion-android-calendar"></i>
<h3>March 25, <br>2018</h3>
</div>
<div class="col-sm-3">
<i class="ion-ios-location"></i>
<h3>Cochin, <br>Kerala</h3>
</div>
<div class="col-sm-3">
<i class="ion-android-contacts"></i>
<h3>30 <br>Seats</h3>
</div>
<div class="col-sm-3">
<i class="ion-pricetags"></i>
<h3>₹18,000 onwards<br>( +18% GST )</h3>
</div>
</div>
<!-- row -->
</div>
<!-- container -->
</section>
<section id="syllabus" class="section syllabus">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h3 class="section-title">Course Outline</h3>
<ul class="list-arrow-right">
<li class="list-arrow-right"><b>Need of Web Security</b></li>
<li class="list-arrow-right"><b>HTTP/HTTPS protocol basics</b></li>
<ul>
<li class="list-arrow-right">HTTP Headers/Request/Header field definitions/HTTPS</li>
</ul>
<li class="list-arrow-right"><b>Understanding Web Application Architectures</b></li>
<li class="list-arrow-right"><b>Encoding</b></li>
<ul>
<li class="list-arrow-right">Charset</li>
<ul>
<li class="list-arrow-right">ASCII/UNICODE</li>
</ul>
<ul>
<li class="list-arrow-right">Unicode/HTML/URL/ Base64 encoding</li>
</ul>
</ul>
<li class="list-arrow-right"><b>Curl</b></li>
<li class="list-arrow-right"><b>Same origin policy</b></li>
<ul>
<li class="list-arrow-right">Origin definition</li>
<li class="list-arrow-right">What does SOP protect from?</li>
<li class="list-arrow-right">How SOP works</li>
<li class="list-arrow-right">Exceptions</li>
<ul>
<li class="list-arrow-right">window.location</li>
</ul>
<ul>
<li class="list-arrow-right">document.domain</li>
</ul>
</ul>
</ul>
<ul class="list-arrow-right">
<li class="list-arrow-right"><b>Cookies</b></li>
<ul >
<li class="list-arrow-right">Cookies domain</li>
<li class="list-arrow-right">Inspecting the cookie protocol</li>
<ul>
<li class="list-arrow-right">Set cookie</li>
<li class="list-arrow-right">Cookie properties - HTTPonly, secure</li>
<li class="list-arrow-right">Same site cookies (to protect CSRF by default)</li>
</ul>
</ul>
<li class="list-arrow-right"><b>Information Gathering</b></li>
<li class="list-arrow-right"><b>Introduction to Burp Suite:</b></li>
<ul>
<li class="list-arrow-right">Traffic Interception and Modification</li>
<li class="list-arrow-right">Using burps in built Intruder to launch semi-automated attacks</li>
<li class="list-arrow-right">RepeaterRepeater vs Spidering in burp</li>
</ul>
<li class="list-arrow-right"><b>OWASP top 10</b></li>
</ul>
<ul class="list-arrow-right">
<li class="list-arrow-right"><b>Cross Site Scripting</b></li>
<ul>
<li class="list-arrow-right">XSS - Why care?</li>
<li class="list-arrow-right">Types of XSS</li>
<ul>
<li class="list-arrow-right">Reflected XSS</li>
<li class="list-arrow-right">DOM Based XSS</li>
<li class="list-arrow-right">Stored XSS</li>
</ul>
</ul>
</ul>
</div>
<!-- /.col-sm-6 -->
<style>
</style>
<div class="col-sm-6">
<ul class="list-arrow-right">
<li class="list-arrow-right"><b>XSS in different contexts</b></li>
<ul>
<li class="list-arrow-right">HTML Context</li>
<li class="list-arrow-right">Attribute Context</li>
<li class="list-arrow-right">Script Context</li>
<li class="list-arrow-right">URL Context</li>
<li class="list-arrow-right">Style Context (IE Specific vector)</li>
</ul>
<li class="list-arrow-right"><b>Content Security Policy</b></li>
<ul>
<li class="list-arrow-right">Introduction</li>
<li class="list-arrow-right">Simple bypasses</li>
<li class="list-arrow-right">Using CSP effectively to mitigate XSS</li>
</ul>
<li class="list-arrow-right"><b>Cross Site Request Forgery</b></li>
<ul>
<li class="list-arrow-right">Introduction</li>
<li class="list-arrow-right">Browser policies leading to CSRF</li>
<li class="list-arrow-right">Exploitation scenarios</li>
<li class="list-arrow-right">Preventing CSRF</li>
<ul>
<li class="list-arrow-right">Using Anti-CSRF tokens</li>
<li class="list-arrow-right">Same Site Cookies (Experimental)</li>
</ul>
</ul>
<ul>
<li class="list-arrow-right"><b>SQL Injection</b></li>
<ul>
<li class="list-arrow-right">Introduction to databases</li>
<li class="list-arrow-right">Error based SQLi</li>
<li class="list-arrow-right">Blind based SQLi</li>
<li class="list-arrow-right">SQLmap</li>
</ul>
<li class="list-arrow-right"><b>Command Injection</b></li>
<li class="list-arrow-right"><b>RFI/LFI</b></li>
<ul>
<li class="list-arrow-right">Introduction to dynamic file inclusion</li>
<li class="list-arrow-right">Reading arbitrary local files with LFI</li>
<li class="list-arrow-right">Exploiting LFI to read source code (of the application)</li>
<li class="list-arrow-right">RFI to RCE - Escalating privileges</li>
</ul>
<li class="list-arrow-right"><b>File Upload vulnerability</b></li>
<ul>
<li class="list-arrow-right">Getting shell access</li>
</ul>
<li class="list-arrow-right"><b>XML</b></li>
<ul>
<li class="list-arrow-right">External XML Entity</li>
<ul>
<li class="list-arrow-right">Reading arbitrary local files</li>
<li class="list-arrow-right">DDOS</li>
<li class="list-arrow-right">Port Scanning</li>
</ul>
</ul>
</ul>
</div>
</details>
</div>
<!-- /.col-sm-6 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<section id="training" class="section about">
<div class="container">
<div class="row">
<h3 class="section-title multiple-title">Training Portfolio</h3>
<p class="training-text" style="font-weight: 100">We have been focusing in the area of cyber security for more than a decade now, rigorously subjecting ourselves to updations in all walks of the subject. We have expertise in the following areas:</p>
<div class="col-sm-12">
<div id="icon-1" align="center">
<div class="col-sm-12 col-md-4">
<div class="fa fa-cog fa-5x training-icon" aria-hidden="true" align="center"></div>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Reverse Code Engineering <br>(Windows/Linux/ARM)</div>
</div>
<div class="col-sm-12 col-md-4">
<i class="fa fa-microchip fa-5x training-icon" aria-hidden="true"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Linux Kernel <br>Exploitation</div>
</div>
<div class="col-sm-12 col-md-4">
<i class="fa fa-bug fa-5x training-icon" aria-hidden="true"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Malware <br>Analysis</div>
</div>
</div>
<div id="icon-2" align="center">
<div class="col-sm-12 col-md-4">
<i class="fa fa-linux fa-5x training-icon" aria-hidden="true"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Linux <br>System Security</div>
</div>
<div class="col-sm-12 col-md-4">
<i class="fa fa-flag fa-5x training-icon" aria-hidden="true" style="color:red"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Arranging <br>Capture The Flag contest</div>
</div>
<div class="col-sm-12 col-md-4">
<i class="fa fa-android fa-5x training-icon" aria-hidden="true"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Mobile Pen Testing<br> (Android)</div>
</div>
</div>
<div id="icon-3" align="center">
<div class="col-sm-12 col-md-4">
<i class="fa fa-search fa-5x training-icon" aria-hidden="true"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100;font-weight: 100">Cyber <br>Forensics</div>
</div>
<div class="col-sm-12 col-md-4">
<i class="fa fa-key fa-5x training-icon" aria-hidden="true"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Cryptography</div>
</div>
<div class="col-sm-12 col-md-4">
<i class="fa fa-shield fa-5x training-icon" aria-hidden="true"></i>
<div class="training-icon-text" style="word-wrap: break-word;font-weight: 100">Pen Testing <br>Web Applications</div>
</div>
</div>
</div>
<!-- /.col-sm-6 -->
</div>
<!-- /.row -->
<p style="font-weight: 100">We have expertise in arranging custom Capture The Flag contest for your organization. This is an exciting way to check the knowledge level of your employees in a specific area of security.
We can also customize the training according to the requirements of your team.<br>For Example,</p>
<ul>
<li>Introduction to Reverse Engineering</li>
<li>Advanced Kernal Exploitation</li>
<li>Introduction to Malware Analysis</li>
<li>Introduction to System Security</li>
<li>Advanced Cryptography</li>
</ul><br>
We also travel to your location to conduct the training for you.<br>
<strong>If you are interested please fill this <a href="https://docs.google.com/forms/d/e/1FAIpQLSezQkkjXV7x7jB7M2XtPMibd_6O1s0QGmqpd-lsSyPpQmeaSw/viewform?usp=sf_link"><font color="#0bdec1">form</font></a> and we can arrange a training for you in your city.</strong>
</div>
<!-- /.container -->
</section>
<section id="faq" class="section faq">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Event FAQs</h3>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingSix">
<h4 class="panel-title">
<a class="faq-toggle collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseSix" aria-expanded="false" aria-controls="collapseSix"> What is CTF ?</a>
</h4>
</div>
<div id="collapseSix" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSix">
<div class="panel-body">
<p>CTFs are a type of computer security competition. Contestants are presented with a set of challenges which test their creativity, technical (and googling) skills, and problem-solving ability. Challenges usually cover a number of categories, and when solved, each yields a string (called a flag) which is submitted to an online scoring service. CTFs are a great way to learn a wide array of computer security skills in a safe, legal environment, and are hosted and played by many security groups around the world for fun and practice.
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a class="faq-toggle collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne"> What is the price of the ticket ?</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<p>Early bird price is ₹18,000* (before 7<sup>th</sup> March). After that it is ₹20,000*. Lunch and snacks will be served during the workshop.
<br>* + 18% GST applicable</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="faq-toggle collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"> Participants requirements</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
<p>Participants should have a basic idea on how a web application works. If you have written a simple web application it is an added advantage.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="faq-toggle collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree"> Who should take this course ?</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">The workshop will be highly useful for developers who want to learn to write secure web applications, pen testers who would like to know how to test web applications, bug bounty hunters, members of Quality Assurance team, team leads and managers who would like to understand the risk of insecure coding and system administrators who want to understand how to harden their resources such as database, web and application servers.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFour">
<h4 class="panel-title">
<a class="faq-toggle collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseFour" aria-expanded="false" aria-controls="collapseFour"> What participants should bring ?</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFour">
<div class="panel-body">It is ideal if participants have a laptop with a Linux distro installed. Participants should have the following softwares pre installed in their laptops:
<ul>
<li> Burp suite</li>
<li> Firefox and Chrome</li>
<li> Foxy proxy addon installed for both Firefox and Chrome</li>
</ul>
We will be also providing a Linux VM Image with all softwares installed for those who need it. We shall help in all installations after you have registered so that
<mark>no time is wasted during training in installation</mark>.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFive">
<h4 class="panel-title">
<a class="faq-toggle collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseFive" aria-expanded="false" aria-controls="collapseFive"> I have specific questions that are not addressed here. Who can help me ?</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFive">
<div class="panel-body">If you have further query about the workshop contact us at <a href=mailto:[email protected]>training [at] bi0s [dot] in</a></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="section registration">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Contact</h3>
</div>
</div>
<form action="https://formspree.io/[email protected]" method="POST">
<div class="row">
<div class="col-md-12" id="registration-msg" style="display:none;">
<div class="alert"></div>
</div>
<div class="col-sm-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name" id="fname" name="fname" required>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Email" id="email" name="email" required>
</div>
<div class="form-group">
<textarea type="text" rows="6" cols="40" class="form-control" placeholder="Message" id="msg" name="msg" required></textarea>
</div>
<div class="text-center mt20">
<input type="submit" class="btn btn-black" id="registration-submit-btn" value="Send"></input>
</div>
</div>
<div class="col-sm-6">
</div>
</div>
</form>
</div>
</section>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<ul class="social-block">
<li><a href="https://www.twitter.com/teambi0s"><i class="ion-social-twitter"></i></a></li>
<li><a href="https://www.facebook.com/teambi0s"><i class="ion-social-facebook"></i></a></li>
<li><a href="https://amritabi0s.wordpress.com/"><i class="ion-social-wordpress"></i></a></li>
<li><a href="https://bi0s.in"><i class="ion-android-globe"></i></a></li>
</ul>
<p> <a class="footer" href="https://bi0s.in"> bi0s.in </a></p>
<!-- <p class="site-info">Theme by <a href="http://technextit.com">Technext Limited</a></p> -->
</div>
</div>
</div>
</footer>
<!-- script -->
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5a818bfad7591465c7079731/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/smooth-scroll/dist/js/smooth-scroll.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>