-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1012 lines (891 loc) · 56.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Annual BSides Algiers Event</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Bsides, Algiers, Finals, Workshop, Conference, Shellmates, Ctf" name="keywords">
<meta content="Security BSides is a non-profit global security event created by a group of hackers, security researchers, and passionate cybersecurity experts who are keen to share their knowledge and ideas." name="description">
<meta property="og:image" content="https://res.cloudinary.com/shellmates-club/image/upload/v1607890230/bsides_site/img_jjiei8.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="600" />
<meta property="og:image:height" content="315" />
<meta property="og:image:alt" content="Bsides Logo" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bsidesalgiers.com/" />
<meta property="og:title" content="The Annual BSides Algiers Event" />
<meta property="og:description" content="Security BSides is a non-profit global security event created by a group of hackers, security researchers, and passionate cybersecurity experts who are keen to share their knowledge and ideas." />
<!-- Favicons -->
<link href="https://res.cloudinary.com/shellmates-club/image/upload/v1607620788/bsides_site/S_bSides_egrpq4.png" rel="icon">
<link href="https://res.cloudinary.com/shellmates-club/image/upload/v1607620787/bsides_site/S_bSides_Background_hcahlq.jpg" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/venobox/venobox.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- =======================================================
Theme Name: TheEvent
Theme URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<a href="#intro" class="scrollto"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606911103/bsides_site/LOGOTRANSPARENT_jjchhp.png" alt="" title=""></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#venue">Venue</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#supporters">Sponsors</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#contact">Contact</a></li>
<!-- <li class="register"><a href="#registration">Register Now</a></li> -->
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container wow fadeIn">
<h1 class="mb-4 pb-0">The Annual<br><span>BSides Algiers</span> Event</h1>
<p class="mb-4 pb-0">08-09 January, École nationale supérieure d'informatique, Algiers</p>
<a href="https://youtu.be/HGU26HWTlqg" class="venobox play-btn mb-4" data-vbtype="video"
data-autoplay="true"></a>
<a href="#about" class="about-btn scrollto">About The Event</a>
</div>
</section>
<main id="main">
<!--==========================
Counter Section
============================-->
<section id="counter" class=" bg-gradient">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="counter-text">
<span>Time left for BSides Algiers Finals event</span>
<h3>Count every second <br />until the end</h3>
</div>
</div>
<div class="col-lg-8">
<div class="cd-timer" id="countdown">
<div class="cd-item">
<span id="days-left"></span>
<p>Days</p>
</div>
<div class="cd-item">
<span id="hours-left"></span>
<p>Hours</p>
</div>
<div class="cd-item">
<span id="minutes-left"></span>
<p>Minutes</p>
</div>
<div class="cd-item">
<span id="seconds-left"></span>
<p>Seconds</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
About Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="Title-hero">About The Event</h2>
<br>
<div class="row">
<div class="col-md-8">
<p>Security BSides is a non-profit global security event created by a group of hackers, security researchers, and passionate cybersecurity experts who are keen to share their knowledge and ideas.
<br>
<br>
Organized by Shellmates, the event took place in a first online qualification phase on december 2020.
<br>
<br>
The Event will include the finals of the CTF competition, alongside conferences presented by local and international experts, and workshops seeking to share the maximum of knowledge and skills related to cybersecurity.
<br>
<br>
The event aims to bring together a community passionate about cybersecurity in Algeria.</p>
<br class="no-display-lg">
</div>
<div class="col-md-3 ml-md-auto">
<h3 class="Title-hero">Where</h3>
<p>École nationale supérieure d'informatique, Algiers</p>
<br>
<br class="no-display-sm">
<h3 class="Title-hero">When</h3>
<p>Saturday and Sunday<br>January 08-09th, 2022</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Speakers Section
============================-->
<section id="speakers" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Event Speakers & Mentors</h2>
<p>Here are some of our speakers and mentors</p>
</div>
<div class="row justify-content-center">
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259306/bsides_site/speakers/small%20sizes/1_j9ssaw.jpg" alt="Hafidh Zouahi" class="img-fluid">
<div class="details">
<h3><a href="hfdz.html">Hafidh Zouahi</a></h3>
<p class="text-capitalize">Computer systems engineer <br> with a keen interest in security</p>
<div class="social">
<a href="https://twitter.com/hfz1337" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/hfz1337" target="_blank"><i class="fa fa-facebook"></i></a>
<a href = "mailto:[email protected]" target="_blank"><i class="fa fa-inbox"></i></a>
<a href="https://hfz1337.github.io/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pencil-square" viewBox="0 0 16 16">
<path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z"/>
<path fill-rule="evenodd" d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/hafidh-zouahi/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259307/bsides_site/speakers/small%20sizes/7_onfcla.jpg" alt="Hamza Tahmi" class="img-fluid">
<div class="details">
<h3><a href="hmzth.html">Hamza Tahmi</a></h3>
<p class="text-capitalize">Security engineer focusing <br>on building secure products</p>
<div class="social">
<a href="https://www.facebook.com/WhyYouAreVisitingMyProfile" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://www.linkedin.com/in/hamza-tahmi/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259306/bsides_site/speakers/small%20sizes/2_yfrpht.jpg" alt="Benaissa Ayoub" class="img-fluid">
<div class="details">
<h3><a href="ayben.html">Benaissa Ayoub</a></h3>
<p class="text-capitalize">crypto engineer at Zama</p>
<div class="social">
<a href="https://twitter.com/y0uben11" target="_blank"><i class="fa fa-twitter"></i></a>
<a href = "mailto:[email protected]" target="_blank"><i class="fa fa-inbox"></i></a>
<a href="https://www.ayoub-benaissa.com/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pencil-square" viewBox="0 0 16 16">
<path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z"/>
<path fill-rule="evenodd" d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/ayoub-benaissa/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259304/bsides_site/speakers/small%20sizes/4_laa2rw.jpg" alt="Bilal Retiat" class="img-fluid">
<div class="details">
<h3><a href="blrt.html">Bilal Retiat</a></h3>
<p class="text-capitalize">Cybersecurity Specialist at Realistic Security</p>
<div class="social">
<a href="https://twitter.com/philomath213" target="_blank"><i class="fa fa-twitter"></i></a>
<a href = "mailto:[email protected]" target="_blank"><i class="fa fa-inbox"></i></a>
<a href="https://philomath213.github.io/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pencil-square" viewBox="0 0 16 16">
<path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z"/>
<path fill-rule="evenodd" d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/bilal-retiat/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259305/bsides_site/speakers/small%20sizes/5_ae42sy.jpg" alt="Bendali Brahim" class="img-fluid">
<div class="details">
<h3><a href="bhben.html">Bendali Brahim</a></h3>
<p class="text-capitalize">security researcher at Synack Red Team</p>
<div class="social">
<a href="https://twitter.com/elvi7major" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/elvi7major" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://www.linkedin.com/in/elvi7major/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259304/bsides_site/speakers/small%20sizes/6_cjnvwz.jpg" alt="Nasreddine Bencherchali" class="img-fluid">
<div class="details">
<h3><a href="nsrben.html">Nasreddine Bencherchali</a></h3>
<p class="text-capitalize">Detection Engineer, Threat Hunter <br>& Security Researcher</p>
<div class="social">
<a href="https://twitter.com/nas_bench" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://nasbench.medium.com/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pencil-square" viewBox="0 0 16 16">
<path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z"/>
<path fill-rule="evenodd" d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/nasreddinebencherchali/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641572218/bsides_site/speakers/small%20sizes/8_yga6kp.jpg" alt="Zerguini Neila" class="img-fluid">
<div class="details">
<h3><a href="zerguini_neila.html">Zerguini Neila</a></h3>
<p class="text-capitalize">Senior Manager within Deloitte Canada</p>
<div class="social">
<a href = "mailto:[email protected]" target="_blank"><i class="fa fa-inbox"></i></a>
<a href="https://www.linkedin.com/in/neila-zerguini" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259306/bsides_site/speakers/small%20sizes/9_bpjebn.jpg" alt="Merouan Oussama Abdallah" class="img-fluid">
<div class="details">
<h3><a href="ousmer.html">Merouan Oussama Abdallah</a></h3>
<p class="text-capitalize">technical department's manager <br>at Shellmates club & Cybersecurity enthusiast</p>
<div class="social">
<a href="https://twitter.com/Oussama99748618?t=RF4Gq7UETtpTbxWY7hfy4g&s=09&fbclid=IwAR1cFFS8MEaUiRxlfkzuLd2XLvCtfYKXsMNdL9YOAmY0H-RjqcP-_5Hx_WU" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/abdou.merouan.73" target="_blank"><i class="fa fa-facebook"></i></a>
<a href = "mailto:[email protected]" target="_blank"><i class="fa fa-inbox"></i></a>
<a href="https://www.linkedin.com/in/oussama-abdallah-merouan-835a421b6/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-auto col-sm-6 speaker-container">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259307/bsides_site/speakers/small%20sizes/10_dvaqtj.jpg" alt="Mokrane Abdelmalek" class="img-fluid">
<div class="details">
<h3><a href="mokrn.html">Mokrane Abdelmalek</a></h3>
<p class="text-capitalize">Dev co-manager at GDG Algiers <br>& Cybersecurity enthusiast</p>
<div class="social">
<a href="https://twitter.com/m0kr4n3" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/m0kr4n3" target="_blank"><i class="fa fa-facebook"></i></a>
<a href = "mailto:[email protected]" target="_blank"><i class="fa fa-inbox"></i></a>
<a href="https://github.com/m0kr4n3" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pencil-square" viewBox="0 0 16 16">
<path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z"/>
<path fill-rule="evenodd" d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/m0kr4n3/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Here is our event schedule</p>
</div>
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-toggle="tab">Day 1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-toggle="tab">Day 2</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-3" role="tab" data-toggle="tab">Day 3</a>
</li>
</ul>
<h3 class="sub-heading">The opening and closing ceremony as well as the conferences will take place at Ecole Nationale Supérieure d'informatique, Oued Smar, Algiers. The workshops' details will be provided via mail to those who registered. Participants will be informed if there are any changes to the schedule.</h3>
<div class="tab-content row justify-content-center">
<!-- Schdule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>07:00 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259307/bsides_site/speakers/small%20sizes/7_onfcla.jpg" alt="Hamza Tahmi">
</div>
<h4>Online Conference: Back to basics. <span>Hamza Tahmi</span></h4>
<p>A non-technical and lightweight presentation about security core principles.</p>
</div>
</div>
</div>
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 AM UTC+1</time></div>
<div class="col-md-10">
<h4>Opening Ceremony</h4>
<ul>
<li>Presentation of the club and event (plus an overview of the BSides Algiers event's history).</li>
<li>A word from the president of the club, an experienced CTF player.</li>
</ul>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259304/bsides_site/speakers/small%20sizes/6_cjnvwz.jpg" alt="Nasreddine Bencherchali">
</div>
<h4>Conference: Threat detection and sigma rules. <span>Nasreddine Bencherchali</span></h4>
<p>Security talk by a Detection Engineer, Threat Hunter & Security Researcher.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>01:00 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641569953/bsides_site/speakers/3_vvqct4.jpg" alt="Menacer Djamel Eddine">
</div>
<h4>Conference: QKD Protocols. <span>Menacer Djamel Eddine</span></h4>
<p>Security talk by a Senior Lecturer & Researcher in Security and Virtualization fields at ESI Algiers.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:30 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641063394/bsides_site/speakers/4_az7fra.jpg" alt="Retiat Bilal">
</div>
<h4>Workshop: Anomaly Hunting with Elastic Stack. <span>Retiat Bilal</span></h4>
<p>Practical Workshop by a Cybersecurity Specialist at Realistic Security.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:30 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641112719/bsides_site/speakers/9_tdhays.png" alt="Merouan Oussama Abdallah">
</div>
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641112742/bsides_site/speakers/10_orxpc7.png" alt="Mokrane Abdelmalek">
</div>
<h4>Workshop: Client side security. <span>Merouan Oussama Abdallah & Mokrane Abdelmalek</span></h4>
<p>A Session focusing on client-side web security, covering the most frequent vulnerabilities with real-world examples and concluding with some solutions to those flaws.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>07:00 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259306/bsides_site/speakers/small%20sizes/1_j9ssaw.jpg" alt="Hafidh Zouahi">
</div>
<h4>Online Conference: Lock Picking 101. <span>Hafidh Zouahi</span></h4>
<p>This talk dives into Lock Picking, the practice of manipulating lock mechanisms to crack them open without their corresponding key.</p>
</div>
</div>
</div>
<!-- End Schdule Day 2 -->
<!-- Schdule Day 3 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-3">
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 AM UTC+1</time></div>
<div class="col-md-10">
<h4>Check-in</h4>
<ul>
<li>Check-in of participants.</li>
</ul>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641572218/bsides_site/speakers/small%20sizes/8_yga6kp.jpg" alt="Zerguini Neila">
</div>
<h4>Conference: Cybersecurity for Operational Technologies (OT) and Industrial Control Systems (ICS): an overview. <span>Zerguini Neila</span></h4>
<p>This conference will talk about all the software, hardware, practices, personnel, and services deployed to protect operational technology infrastructure. It will also present the security aspect of control systems used in industries such as utilities and manufacturing to automate or remotely control product production, handling and distribution.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>01:00 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641574344/bsides_site/speakers/small%20sizes/12_h41wsf.jpg" alt="abderrahmane Soudaki">
</div>
<h4>Conference: XDR and synchonized security. <span>Abderrahmane Soudaki</span></h4>
<p>What is XDR ?</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:30 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259306/bsides_site/speakers/small%20sizes/2_yfrpht.jpg" alt="Benaissa Ayoub">
</div>
<h4>Workshop: Crypto before Bitcoin. <span>Benaissa Ayoub</span></h4>
<p>Practical Workshop by a Crypto Engineer at Zama.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:30 PM UTC+1</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641259305/bsides_site/speakers/small%20sizes/5_ae42sy.jpg" alt="Bendali Brahim">
</div>
<h4>Workshop: Pentesting Methodology & Tips. <span>Bendali Brahim</span></h4>
<p>Practical Workshop by a Security Researcher at Synack Red Team.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 PM UTC+1</time></div>
<div class="col-md-10">
<h4>Closing Ceremony</h4>
<ul>
<li>Summary of the event.</li>
<li>A word from our sponsor Realistic Security.</li>
</ul>
</div>
</div>
</div>
<!-- End Schdule Day 3 -->
</div>
</div>
</section>
<!--==========================
Venue Section
============================-->
<section id="venue" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Event Venue</h2>
<p>Event venue location info and gallery</p>
</div>
<div class="row no-gutters">
<div class="col-lg-6 venue-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3198.7298188715604!2d3.171726915141748!3d36.70502987996826!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x128e522f3f317461%3A0x215c157a5406653c!2sEcole%20Nationale%20Sup%C3%A9rieure%20d'Informatique!5e0!3m2!1sfr!2sdz!4v1641264946454!5m2!1sfr!2sdz" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<div class="col-lg-6 venue-info">
<div class="row justify-content-center">
<div class="col-11 col-lg-9">
<h3>École nationale supérieure d'informatique, Algiers</h3>
<p>Formerly the National Institute for Computer Training (INI), is an Algerian higher education institution training state engineers in computer science. It is located in Oued Smar, about 15 km from the city center of the capital Algiers, in Algeria. </p>
</div>
</div>
</div>
</div>
</div>
<div class="container venue-gallery-container">
<div class="row no-gutters">
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266965/bsides_site/venue-gallery/1_gppl7a.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266965/bsides_site/venue-gallery/1_gppl7a.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266956/bsides_site/venue-gallery/2_zpcjni.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266956/bsides_site/venue-gallery/2_zpcjni.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266965/bsides_site/venue-gallery/3_hxgrs4.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266965/bsides_site/venue-gallery/3_hxgrs4.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266975/bsides_site/venue-gallery/4_votarv.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266975/bsides_site/venue-gallery/4_votarv.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266948/bsides_site/venue-gallery/5_byhiqs.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266948/bsides_site/venue-gallery/5_byhiqs.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266993/bsides_site/venue-gallery/11_eso4xw.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266993/bsides_site/venue-gallery/11_eso4xw.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266985/bsides_site/venue-gallery/7_ollkur.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266985/bsides_site/venue-gallery/7_ollkur.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641266969/bsides_site/venue-gallery/9_sjk9sr.jpg" class="venobox" data-gall="venue-gallery">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641266969/bsides_site/venue-gallery/9_sjk9sr.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Gallery Section
============================-->
<section id="gallery" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Gallery</h2>
<p class="gallery-desc">Check our gallery from the recent events</p>
</div>
</div>
<div class="owl-carousel gallery-carousel animation-left">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238434/bsides_site/gallery/IMG_20211123_150152_ydpemy.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238434/bsides_site/gallery/IMG_20211123_150152_ydpemy.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641160562/bsides_site/gallery/res-console.cloudinary_qdc7nk.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641160562/bsides_site/gallery/res-console.cloudinary_qdc7nk.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238401/bsides_site/gallery/IMG_20210703_165548_pv7yda.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238401/bsides_site/gallery/IMG_20210703_165548_pv7yda.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914650/bsides_site/gallery/4_k4bkza.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914650/bsides_site/gallery/4_k4bkza.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238403/bsides_site/gallery/IMG_20211109_171827_avn9cm.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238403/bsides_site/gallery/IMG_20211109_171827_avn9cm.jpg" width="270" height="180" alt="" ></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914674/bsides_site/gallery/6_aqlnxo.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914674/bsides_site/gallery/6_aqlnxo.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238242/bsides_site/gallery/20211130_145007_qqttvu.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238242/bsides_site/gallery/20211130_145007_qqttvu.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914663/bsides_site/gallery/8_wwgcxb.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914663/bsides_site/gallery/8_wwgcxb.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238107/bsides_site/gallery/FB_IMG_1544615348289_d2pdlf.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238107/bsides_site/gallery/FB_IMG_1544615348289_d2pdlf.jpg" width="270" height="180" alt=""></a>
</div>
<br>
<div class="owl-carousel gallery-carousel animation-right">
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914655/bsides_site/gallery/1_nzrxaa.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914655/bsides_site/gallery/1_nzrxaa.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238228/bsides_site/gallery/IMG_5503_b13uog.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238228/bsides_site/gallery/IMG_5503_b13uog.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914645/bsides_site/gallery/3_rxw8gn.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914645/bsides_site/gallery/3_rxw8gn.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238367/bsides_site/gallery/20210703_104743_mbelei.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238367/bsides_site/gallery/20210703_104743_mbelei.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914697/bsides_site/gallery/5_olmnwi.png" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914697/bsides_site/gallery/5_olmnwi.png" width="270" height="180" alt="" ></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238107/bsides_site/gallery/FB_IMG_1544615348289_d2pdlf.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238107/bsides_site/gallery/FB_IMG_1544615348289_d2pdlf.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914658/bsides_site/gallery/7_lmk22e.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914658/bsides_site/gallery/7_lmk22e.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1641238404/bsides_site/gallery/20211123_130640_dwlzuc.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641238404/bsides_site/gallery/20211123_130640_dwlzuc.jpg" width="270" height="180" alt=""></a>
<a href="https://res.cloudinary.com/shellmates-club/image/upload/v1606914640/bsides_site/gallery/9_qfncgc.jpg" class="venobox" data-gall="gallery-carousel"><img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606914640/bsides_site/gallery/9_qfncgc.jpg" width="270" height="180" alt=""></a>
</div>
</section>
<!--==========================
Sponsors Section
============================-->
<section id="supporters" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Sponsors</h2>
</div>
<div class="row no-gutters supporters-wrap clearfix justify-content-center">
<div class="col-lg-4 col-md-6 col-xs-6">
<div class="supporter-logo">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1641343870/bsides_site/supporters/github_sw0pwc.webp" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-6">
<div class="supporter-logo">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1606911042/bsides_site/supporters/2_fmlc5o.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-6">
<div class="supporter-logo">
<img src="https://res.cloudinary.com/shellmates-club/image/upload/v1607620793/bsides_site/ESI_r2mnbe.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</section>
<!--==========================
F.A.Q Section
============================-->
<section id="faq" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>F.A.Q </h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-9">
<ul id="faq-list">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">Who organizes BSides Algiers 2021? <i class="fa fa-minus-circle"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
The event is organized by Shellmates Club, a group of students passionate about cybersecurity. Founded on December 19th 2011 as OWASP Student Chapter Algeria, the group was the first representative of OWASP in Algeria. The main goal of the club is to create a community of infosec enthusiasts and encourage knowledge sharing in the IT security field.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">Who can register? <i class="fa fa-minus-circle"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
You are a fan of cybersecurity or a professional in this field? You are passionate about hacking or you are simply curious? Then BSides Algiers 2021 Finals is the opportunity not to miss to satisfy your curiosity, learn and also meet other people addicted to computer security.
<br>
The CTF finals are reserved to the teams qualified, however learning by watching is an efficient way of progress.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed">What to expect at BSides Algiers 2021 Finals onsite edition? <i class="fa fa-minus-circle"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
This phase includes the finals of the CTF (Capture The Flag) competition, a cybersecurity contest in which a set of problems is given, covering various topics related to cybersecurity (Cryptography, Reverse-Engineering, Binary Exploitation, Web Security, Digital Forensics).
<br>
Alongside with conferences, and exciting workshops related to cybersecurity!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">What about the CTF finals ? <i class="fa fa-minus-circle"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
The CTF finals will be held in the 2nd weekend of BSides Algiers, 10 teams qualified from BSides Quals and HackINI 2021 will race in a hacking battle of 24 hours, if you did not qualify, you can still watch those hackers in action!
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">How to reach us? <i class="fa fa-minus-circle"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
If you have any further questions email us at <a href="mailto:[email protected]">[email protected]</a> Or track us on our <a href="#footer">Social Media Accounts</a>
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--==========================
Subscribe Section
============================-->
<section id="subscribe">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Newsletter</h2>
<p>Get notified of all announcements concerning the BSides Algiers 2021 Finals</p>
</div>
<form method="POST" class="gform newsForm" action="https://script.google.com/macros/s/AKfycbxSCq0wXJQHprC1p-enVO2FjtcjbbW6Ribf3Sf0ubUfbU8ecBo4kRc62FPJMjdrXL0W/exec">
<div id="sendmessage2">Thank you for subscribing!</div>
<div id="errormessage2">An Error happened while registering you :(</div>
<div class="form-row justify-content-center">
<div class="form-group col-auto">
<input type="text" class="form-control" placeholder="Enter your Email" name="email" data-rule="email" data-msg="Please enter a valid email">
<div class="validation"></div>
</div>
<input type="hidden" name="newsletter" value="true" />
<div class="col-auto">
<button type="submit"
data-callback='onSubmitNewsletter'
data-action="submit"
class="g-recaptcha"
data-sitekey="6LeOAdodAAAAAOALhLlgjohKykrLYXJ7agGrJobl">Subscribe</button>
</div>
</div>
</form>
</div>
</section>
<!--==========================
Registration Section
============================-->
<section id="registration" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Registrations</h2>
<p>Conferences, workshops, maybe both! Just make sure to reserve your place(s) !</p>
</div>
<div class="row">
<div class="col-lg-6">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Access Portal To</h5>
<h6 class="card-type text-center">Conferences</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Formal meetings</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Pro-leveled speakers</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Advanced cybersecurity topics</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Theoretical concepts of hacking</li>
</ul>
<hr>
<div class="text-center">
<h6>Registration closed!</h6>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Access Portal To</h5>
<h6 class="card-type text-center">Workshops</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Interactive meetings</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Hands-on workshops</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>From beginner friendly to advanced</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Practical hacking concepts</li>
</ul>
<hr>
<div class="text-center">
<h6>Registration closed!</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Contact Section
============================-->
<section id="contact" class="section-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Contact Us</h2>
<p>For more information, fill out this form</p>
</div>
<div class="row contact-info">
<div class="col-md-6">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>École nationale supérieure d'informatique <br>BPM68 16270, Oued Smar, Algiers, Algeria</address>
</div>
</div>
<div class="col-md-6">
<div class="contact-email">
<i class="ion-ios-email-outline"></i>
<h3>Email</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
<div class="form" >
<div id="sendmessage">Your message has been sent. Thank you!</div>
<div id="errormessage">An Error happened while trying to send your message :(</div>
<form action="https://script.google.com/macros/s/AKfycbxSCq0wXJQHprC1p-enVO2FjtcjbbW6Ribf3Sf0ubUfbU8ecBo4kRc62FPJMjdrXL0W/exec" method="post" role="form" class="gform contactForm">
<div class="form-row">
<div class="form-group col-md-6">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
<div class="form-group col-md-6">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validation"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validation"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validation"></div>
</div>
<div class="text-center">
<button
type="submit"
data-callback='onSubmit'
data-action="submit"
class="g-recaptcha"
data-sitekey="6LeOAdodAAAAAOALhLlgjohKykrLYXJ7agGrJobl">Send Message</button>
</div>
</form>
</div>
</div>
</section><!-- #contact -->
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-12 footer-contact">
<h4 class="section-header">Follow Us</h4>
<p>
École nationale supérieure d'informatique <br>
BPM68 16270, Oued Smar, Algiers<br>
Algeria <br>
<strong>Email:</strong> [email protected]<br>
</p>
<div class="social-links">
<a href="https://mobile.twitter.com/shellmates" class="twitter" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://discord.gg/e8ZgWj6ge3" class="discord" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-discord" viewBox="0 0 16 16">
<path d="M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z"/>
</svg></a>
<a href="https://m.facebook.com/shellmates" class="facebook" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://instagram.com/shellmates?igshid=z75th4cophci" class="instagram" target="_blank"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/shellmates-club" class="linkedin" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong>Shellmates Club</strong>. All Rights Reserved
</div>
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=TheEvent
-->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-angle-up"></i></a>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>