-
Notifications
You must be signed in to change notification settings - Fork 13
/
arkimeet.html
924 lines (880 loc) · 41.1 KB
/
arkimeet.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
---
title: Arkimeet
---
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-137788272-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag () { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-137788272-1');
</script>
<title>Arkimeet</title>
<!-- Required meta tags always come first -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="description" content="Let's meet up to talk about Arkime" />
<!-- facebook open graph tags -->
<meta property="og:url" content="http://molo.ch/on" />
<meta property="og:description" content="Let's meet up to talk about Arkime" />
<meta property="og:image" content="http://molo.ch/moloch_2x2.png" />
<!-- twitter card tags additive with the og: tags -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:domain" value="molo.ch" />
<meta name="twitter:description" value="Let's meet up to talk about Arkime" />
<meta name="twitter:image" content="http://molo.ch/moloch_2x2.png" />
<meta name="twitter:url" value="http://molo.ch/on" />
<!-- fontawesome http://fontawesome.io/ -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap CSS https://getbootstrap.com/ -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<!-- custom index page styles -->
<link rel="stylesheet" type="text/css" href="index.css">
<!-- page functions -->
<script src="index.js"></script>
</head>
<body id="viewport">
<div class="container-fluid full-width-page on-page">
<!-- navbar -->
{%- include navbar.html -%}
<div class="container">
<div class="primary-theme-background pl-4 pr-4 p-nav-lg angle-background angle-background-long">
<div class="container-fluid">
<div id="main"
class="row">
<div class="col-md-12 text-center">
<span class="d-block d-sm-none">
<h1 class="display-3">
<img class="arkime-logo black-arkime d-none d-sm-none d-md-none d-lg-inline" height="100px" />
Arkimeet 2023
<img class="arkime-logo black-arkime d-none d-sm-none d-md-none d-lg-inline" height="100px" />
</h1>
<h1 class="display-5">
Amazon WAS 26, Arlington, VA
</h1>
<p class="lead primary-theme-text">
May 23, 2023,<br class="d-block d-sm-none" /> 9-5 PM
</p>
</span>
<span class="d-none d-sm-block">
<h1 class="display-2">
<img class="arkime-logo black-arkime d-none d-sm-none d-md-none d-lg-inline" height="100px" />
Arkimeet 2023
<img class="arkime-logo black-arkime d-none d-sm-none d-md-none d-lg-inline" height="100px" />
</h1>
<h1 class="display-4">
Amazon WAS 26, Arlington, VA
</h1>
<p class="lead lead-xl primary-theme-text">
May 23, 2023,<br class="d-block d-sm-none" /> 9-5 PM
</p>
</span>
<p class="lead lead-lg text-center mt-4 primary-theme-text">
<strong>
Meet and learn from Arkime creators, users, and contributors.
</strong>
</p>
<p class="lead lead-lg text-center mt-4">
Join the Arkime community for a day of sharing, learning, and collaboration.
Hear from fellow Arkimists about their success with Arkime.
Review new Arkime features and what is on the roadmap for 5.0.
</p>
<p class="lead lead-lg text-center">
If your company has a network security monitoring team as part of your “Blue Team,” you'll want to attend this event.
</p>
<p class="lead lead-lg text-center">
Presentations will be applicable to all Arkime experience levels.
</p>
<!-- <p class="mt-3 d-flex justify-content-center flex-wrap">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeRcYVgJ07Z7cRuaMIIxD3YVT7po7bPwmjlCPNUM7ebSdGZGg/viewform"
class="btn btn-lg btn-primary btn-fw mt-1 mr-sm-1">
Register
</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe2LEkctWBn8Oup13FXIhxoe9GHRvtVyCth49h7sYuybr_ldg/viewform"
class="btn btn-lg btn-info btn-fw mt-1 ml-sm-1">
Submit a Talk
</a>
</p>
<p class="lead mt-2 primary-theme-text">
Registration is required by May 18, 2023.
</p> -->
<hr>
<!-- <p class="lead lead-lg mt-4 d-flex justify-content-center flex-wrap">
Join remotely! We're using Chime to host virtual attendance and presentations.
</p>
<p class="mb-3">
<a href="https://chime.aws/6249656362"
class="btn btn-lg btn-primary mt-1">
Join Arkimeet remotely!
</a>
</p> -->
<!-- <p class="lead mt-5" style="font-weight:400">
<span class="fa fa-lightbulb-o fa-lg primary-theme-text">
</span>
Join us in the
<strong>#arkimeet</strong>
Slack channel in the
<a class="no-decoration"
href="https://slackinvite.arkime.com/">
arkime
</a>
workspace.
<span class="fa fa-lightbulb-o fa-lg primary-theme-text d-none d-md-inline">
</span>
</p> -->
</div>
</div>
</div>
<div class="text-center mt-3">
<img src="assets/Arkime_Logo_Mark_FullGradient@3x.png" height="100px" />
</div>
</div>
<!-- <div class="container jumbotron mt-5 text-center">
<h1 class="display-4">
Agenda coming soon!
</h1>
<p class="lead mb-0">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe2LEkctWBn8Oup13FXIhxoe9GHRvtVyCth49h7sYuybr_ldg/viewform"
class="no-decoration">
Submit a talk
</a>
to get added to our agenda.
</p>
</div> -->
<div id="agenda"
class="row mb-5">
<div class="col-12">
<div class="d-flex align-items-stretch justify-content-between">
<h3>
Agenda
</h3>
<h3 class="lead dark-primary-theme-text text-right ml-auto align-self-stretch mt-auto">
<strong>9:00 AM – 5:00 PM EST</strong>
</h3>
</div>
<ul class="list-group list-group-striped">
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">9:00 </div>
<div class="pl-3 flex-fill agenda-title">Breakfast</div>
<!-- <div class="pl-3 flex-fill mr-n1 text-right">
<strong>
Sponsored by
</strong>
</div> -->
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">9:30 </div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Arkime Keynote
</div>
<span class="agenda-description">
It has been a while since our last conference!
Many new features have been added to Arkime.
We will review some of these features and demo
how to use them.
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong>
<a href class="no-decoration" data-toggle="modal" data-target="#andybio">Andy</a>
&
<a href class="no-decoration" data-toggle="modal" data-target="#elysebio">Elyse</a>
</strong>
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">10:45</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Correlating events in OpenSearch Security Analytics
</div>
<span class="agenda-description">
The Correlation Engine is a Security Finding Knowledge Graph
which can be used to store connected findings data and generate
correlated insights (as well as correlated historical insights)
based on a time window.
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong>
<a href class="no-decoration" data-toggle="modal" data-target="#praveenbio">Praveen</a>
&
<a href class="no-decoration" data-toggle="modal" data-target="#subhobratabio">Subhobrata</a>
</strong>
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">11:15</div>
<div class="pl-3 flex-fill agenda-title">Break</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">11:30</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
From OIL to MegaOIL and Beyond
</div>
<span class="agenda-description">
Arkime is one slice of a delicious security pie.
What are some other slices, and how do we connect them?
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong><a href class="no-decoration" data-toggle="modal" data-target="#mattbio">Matt</a></strong>
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">12:00</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Arkime Stream Processing with Kafka
</div>
<span class="agenda-description">
How we process and enrich Arkime SPI using stream processing with Kafka and why.
<a class="agenda-description-more-btn cursor-pointer primary-theme-text no-wrap"
onclick="showMore(event)">
...more <span class="fa fa-caret-down"></span>
</a>
<span class="agenda-description-more-text" style="display:none;">
I'll go over our reasoning for choosing Kafka and the plugin we developed,
as well as the ecosystem and various processors we then built around the Kafka
stream/pipeline model and how it helps to deal with spikes in network traffic.
</span>
<a class="agenda-description-less-btn cursor-pointer primary-theme-text no-wrap"
onclick="showLess(event)"
style="display:none;">
less <span class="fa fa-caret-up"></span>
</a>
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong>
<a href class="no-decoration" data-toggle="modal" data-target="#owenbio">Owen</a>
</strong>
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">12:30</div>
<div class="pl-3 flex-fill agenda-title">Lunch</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<!-- <strong>
Sponsored by
</strong> -->
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">13:30</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Cont3xt!!!
</div>
<span class="agenda-description">
Arkime 4.0 was released with a new app, Cont3xt!
<a class="agenda-description-more-btn cursor-pointer primary-theme-text no-wrap"
onclick="showMore(event)">
...more <span class="fa fa-caret-down"></span>
</a>
<span class="agenda-description-more-text" style="display:none;">
Cont3xt centralizes and simplifies a structured approach to gathering contextual intelligence in support of technical investigations.
In this talk, we will demo Cont3xt and discuss what it is and how it fits within the Arkime system.
Learn more <a href="/cont3xt" class="no-decoration">here</a>.
</span>
<a class="agenda-description-less-btn cursor-pointer primary-theme-text no-wrap"
onclick="showLess(event)"
style="display:none;">
less <span class="fa fa-caret-up"></span>
</a>
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong>
<a href class="no-decoration" data-toggle="modal" data-target="#andy">Elyse</a>
</strong>
</div>
</div>
</li>
<!-- <li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">14:00</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Arkime Oauth2 Authentication
</div>
<span class="agenda-description">
Oauth2 authentication: why you should use it, and how to deploy.
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong>
<a href class="no-decoration" data-toggle="modal" data-target="#taylorbio">Taylor</a>
</strong>
</div>
</div>
</li> -->
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">14:00</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Infrastructure and Scaling Arkime
</div>
<span class="agenda-description">
In this talk we will discuss real Arkime deployments.
<!-- <a class="agenda-description-more-btn cursor-pointer primary-theme-text no-wrap"
onclick="showMore(event)">
...more <span class="fa fa-caret-down"></span>
</a>
<span class="agenda-description-more-text" style="display:none;">
</span>
<a class="agenda-description-less-btn cursor-pointer primary-theme-text no-wrap"
onclick="showLess(event)"
style="display:none;">
less <span class="fa fa-caret-up"></span>
</a> -->
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong><a href class="no-decoration" data-toggle="modal" data-target="#andybio">Andy</a></strong>
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">15:00</div>
<div class="pl-3 flex-fill agenda-title">Break</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">15:15</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Cloud
</div>
<span class="agenda-description">
Let's talk about Arkime in the CLOUD! Everyone's doing it.
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong><a href class="no-decoration" data-toggle="modal" data-target="#chrisbio">Chris</a></strong>
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">16:00</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Arkime v5
</div>
<span class="agenda-description">
We will discuss a few desired upcoming features and talk about the 5.0 release.
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong><a href class="no-decoration" data-toggle="modal" data-target="#andybio">Andy</a></strong>
</div>
</div>
</li>
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">16:30</div>
<div class="pl-3 flex-fill">
<div class="agenda-title">
Fire talks
</div>
<span class="agenda-description">
Let's open the floor to random discussions and start
a dialog to discuss which features the community needs most!
</span>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<strong>All</strong>
</div>
</div>
</li>
<!-- <li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">17:00</div>
<div class="pl-3 flex-fill agenda-title">Goodbye!</div>
<div class="pl-3 flex-fill mr-n1 text-right"> </div>
</div>
</li> -->
<li class="list-group-item">
<div class="d-flex align-items-start justify-content-between">
<div class="mr-auto dark-primary-theme-text">17:00</div>
<div class="pl-3 flex-fill agenda-title">
Happy Hour!
<div class="more-info">
</div>
</div>
<div class="pl-3 flex-fill mr-n1 text-right">
<!-- <strong>
Sponsored by
</strong> -->
</div>
</div>
</li>
</ul>
</div>
</div>
<div id="covid"
class="text-center mb-4">
<div class="row">
<div class="col-md-12">
<h3 class="lead-xl mr-auto primary-theme-text mt-5 display-3">
COVID-19 Safety Measures
</h3>
<p class="lead mr-2 ml-2 mt-2 mb-4">
Arkimeet 2023 will be held indoors. Masks are optional. Vaccinations are encouraged but not required.
</p>
</div>
</div>
</div>
<div id="venue"
class="text-center primary-theme-background angle-background mb-3 mt-4">
<div class="row">
<div class="col-md-12">
<h3 class="mr-auto primary-theme-text mt-5 display-3">
Venue
</h3>
<p class="lead mb-3">
Amazon WAS26<br>
2029-A Crystal Dr<br>
Arlington, VA 22202<br>
Room 1.103/1.104
</p>
<div class="container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3107.0014570012627!2d-77.05201328486635!3d38.855323657028656!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b7b7a8f2c9e917%3A0xfd42867ff5ab9166!2sAmazon%20WAS26!5e0!3m2!1sen!2sus!4v1677614110299!5m2!1sen!2sus" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<p class="lead mr-2 ml-2 mt-2">
<a href="https://goo.gl/maps/BFYKRubamd6WbHvk8" class="no-decoration" target="_blank">Ronald Reagan Washington National Airport (DCA)</a>
is the closest airport.
<br>
<a href="https://goo.gl/maps/LHwW9tfeHALzgnjq7" class="no-decoration" target="_blank">Crystal City Metro Station</a>
is the closest metro stop.
<br>
<br>
The most convenient parking garage is next to a Capital One at
<a href="https://www.google.com/maps/place/Public+Parking/@38.8555445,-77.0494146,3a,75y,262.35h,89.95t/data=!3m6!1e1!3m4!1sbIz5AFm3QgK9GQxjxKK3RA!2e0!7i16384!8i8192!4m17!1m9!3m8!1s0x89b7b72f25dd9861:0xde9a1bbc39859170!2s2010+Crystal+Dr,+Arlington,+VA+22202!3b1!8m2!3d38.8544815!4d-77.0503973!10e5!16s%2Fg%2F11b8v469x9!3m6!1s0x89b7b76570d0f2d5:0x6dad61e1ac3f3eb3!8m2!3d38.8555124!4d-77.049572!10e5!16s%2Fg%2F11fkm09n1p"
class="no-decoration"
target="_blank">
2144 Crystal Dr, Arlington, VA 22202.
</a>
<br>
Keep your parking ticket with you.
<br class="d-block d-sm-none">
Parking is $23.
<br>
Take the elevator from
<a href="assets/arkimeet_elevator.jpg" target="_blank" class="no-decoration">Row H of the garage</a>
to the Lobby level.
<br>
From the elevator, walk straight through the glass doors to collect your badge at reception.
<br>
<strong>ID will be required and must match the name you used to register</strong>
<span class="fa fa-info-circle cursor-pointer" data-toggle="tooltip" data-html="true" data-trigger="click"
title="Ping @andywick or @elyse on <a href='https://slackinvite.arkime.com/' target='_blank'>Slack</a> or email arkime@yahooinc.com if you need to update the name you used during registration."
></span>
<br>
From reception, head right past the coffee shop, then past the restrooms.
Room 1.103/1.104 is on the right, before the kitchen.
<br>
<br>
<span class="lead-lg">
If you are walking from Crystal Drive, look for this
<a href="assets/art.jpg" target="_blank" style="text-decoration: underline;">art installation</a>
near the garage/Captial One.
<br>
Go up the stairs and take a left.
</span>
<br>
<span class="fa fa-map-signs fa-2x mt-3"></span>
</p>
</div>
</div>
</div>
<div id="sponsors" class="container text-center primary-theme-background angle-background mt-3">
<div class="row mt-4">
<div class="col mt-5">
<h1 class="display-4 mb-4">
SPEAKERS
</h1>
<div class="d-flex flex-wrap flex-row justify-content-around">
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/andy.png" height="120px" style="border-radius:6px" />
<br>
<strong>Andy Wick</strong>
<p class="mb-1">Distinguished Architect<br> </p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#andybio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/elyse.jpg" height="120px" style="border-radius:6px" />
<br>
<strong>Elyse Rinne</strong>
<p class="mb-1">Software Engineer<br> </p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#elysebio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/chris.png" height="120px" style="border-radius:6px" />
<br>
<strong>Chris Helma</strong>
<p class="mb-1">Software Engineer<br> </p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#chrisbio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/owen.jpg" height="120px" style="border-radius:6px" />
<br>
<strong>Owen McGill</strong>
<p class="mb-1">Dev/Ops Engineer<br> </p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#owenbio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/matt.jpg" height="120px" style="border-radius:6px" />
<br>
<strong>Matt Carothers</strong>
<p class="mb-1">Senior Principal<br>Security Architect</p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#mattbio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/taylor.jpeg" height="120px" style="border-radius:6px" />
<br>
<strong>Taylor</strong>
<p class="mb-1">Cyber Security and<br>Infrastructure Supervisor</p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#taylorbio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/toby.jpeg" height="120px" style="border-radius:6px" />
<br>
<strong>Toby Salusky</strong>
<p class="mb-1">Software Development Intern</p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#tobybio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<img src="assets/speakers/praveen.png" height="120px" style="border-radius:6px" />
<!-- <span class="fa fa-user fa-5x" style="height:120px;color:gray;opacity:0.6;position:relative;top:20px;"></span> -->
<br>
<strong>Praveen Sameneni</strong>
<p class="mb-1">Engineering Manager</p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#praveenbio">
See bio
</a>
</div>
<div class="mb-4 mr-2 ml-2">
<!-- <img src="assets/speakers/subhobrata.jpeg" height="120px" style="border-radius:6px" /> -->
<span class="fa fa-user fa-5x" style="height:120px;color:gray;opacity:0.6;position:relative;top:20px;"></span>
<br>
<strong>Subhobrata Dey</strong>
<p class="mb-1">Software Development Engineer</p>
<a class="btn btn-outline-danger btn-sm"
data-toggle="modal" data-target="#subhobratabio">
See bio
</a>
</div>
</div>
<hr class="mt-4 mb-4">
<h1 class="display-4 mt-4">
SPONSORS
</h1>
<div class="mt-4 mb-3">
<img src="assets/paranoids.png"
height="50px"
class="mb-4 mr-3"
/>
<img src="assets/yahoo.png"
class="ml-3 mb-4"
height="50px"
/>
</div>
<p class="lead mb-0">
Want to be a sponsor?
<br>
Email
<a title="Click to copy"
data-toggle="tooltip"
class="btn-link no-decoration"
onclick="copyLink('arkime@yahooinc.com', this)">
arkime@yahooinc.com
<span class="fa fa-copy"></span>
</a>or
<a class="no-decoration"
href="https://slackinvite.arkime.com/">
Slack
</a> @elyse or @andywick.
</p>
</div>
</div>
</div>
<p class="text-center mb-3 primary-theme-text pt-4">
<span class="fa fa-smile-o mr-1"></span>
See you there!
<span class="fa fa-smile-o ml-1"></span>
</p>
</div>
<div class="modal" id="andybio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Andy Wick</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/andy.png" height="120px" style="border-radius:6px" />
<p class="mb-1"><strong>Distinguished Architect</strong></p>
Andy is a Distinguished Architect and the creator of Arkime and former Chief Architect of AIM.
He has a passion for building large scalable tools and empowering users, as well as, the global open source community.
</div>
</div>
</div>
</div>
<div class="modal" id="elysebio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Elyse Rinne</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/elyse.jpg" height="120px" style="border-radius:6px" />
<p class="mb-1"><strong>Software Engineer</strong></p>
Elyse is the UI and full stack engineer for Arkime (formerly Moloch).
She revamped the UI to be more user-friendly and maintainable.
Now, Elyse is working on implementing awesome new features to make Arkime
the go-to open source tool for network security professionals!
</div>
</div>
</div>
</div>
<div class="modal" id="chrisbio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Chris Helma</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/chris.png" height="120px" style="border-radius:6px" />
<p class="mb-1"><strong>Software Engineer</strong></p>
Chris started his career programming astronaut training simulations for NASA.
He then joined Amazon Web Services where he focused on developer efficiency tooling,
backend engineering for cryptography/security products, and open source development
for the OpenSearch Project. He's now making Arkime easier to set up in AWS by
writing an open source management CLI to create/manage Arkime Clusters using the
Cloud Development Kit.
</div>
</div>
</div>
</div>
<div class="modal" id="owenbio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Owen McGill</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/owen.jpg" height="120px" style="border-radius:6px" />
<p class="mb-1"><strong>Dev/Ops Engineer</strong></p>
I'm a Dev/Ops engineer working at OpenSystems AG in Bern, Switzerland.
I work in a team developing a network traffic detection system to detect
and identify known and new network based cyber attacks. I'm a part-time
contributor to Arkime and developer of some of the tools in our
Arkime-Kafka ecosystem.
</div>
</div>
</div>
</div>
<div class="modal" id="mattbio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Matt Carothers</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/matt.jpg" height="120px" style="border-radius:6px" />
<p class="mb-1"><strong>Senior Principal Security Architect</strong></p>
Matt Carothers is a Sagittarius. He enjoys sunsets, long hikes in the mountains,
and intrusion detection. After studying Computer Science at the University of
Oklahoma, he accepted a position with Cox Communications in 2001 under the
leadership of renowned thought leader and virtuoso bass player William “Wild Bill”
Beesley, who asked to be credited in this bio. There Matt formed Cox's first abuse
department, which he led for several years, and today he serves as Cox's
Senior Principal Security Architect.
</div>
</div>
</div>
</div>
<div class="modal" id="taylorbio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Taylor</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/taylor.jpeg" height="120px" style="border-radius:6px" />
<p class="mb-1"><strong>Cyber Security and Infrastructure Supervisor</strong></p>
</div>
</div>
</div>
</div>
<div class="modal" id="praveenbio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Praveen Sameneni</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/praveen.png" height="120px" style="border-radius:6px" />
<!-- <span class="fa fa-user fa-5x" style="height:120px;color:gray;opacity:0.6;position:relative;top:20px;"></span> -->
<p class="mb-1"><strong>Engineering Manager</strong></p>
Praveen Sameneni is an Engineering Manager at AWS. Praveen's area of interest include Plugin development, Security Analytics in OpenSearch.
</div>
</div>
</div>
</div>
<div class="modal" id="subhobratabio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Subhobrata Dey</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!-- <img src="assets/speakers/subhobrata.jpeg" height="120px" style="border-radius:6px" /> -->
<span class="fa fa-user fa-5x" style="height:120px;color:gray;opacity:0.6;position:relative;top:20px;"></span>
<p class="mb-1"><strong>Software Development Engineer</strong></p>
Subhobrata Dey is a Software Development Engineer at AWS. Subho focuses on OpenSearch Security Analytics, Alerting and distributed systems.
</div>
</div>
</div>
</div>
<div class="modal" id="tobybio" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered text-center">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Toby Salusky</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/speakers/toby.jpeg" height="120px" style="border-radius:6px" />
<p class="mb-1"><strong>Software Development Intern</strong></p>
</div>
</div>
</div>
</div>
</div>
<!-- footer -->
{%- include footer.html -%}
<script>
function showMore (event) {
let target = event.target;
if (event.target.tagName === 'SPAN') {
target = event.target.parentElement;
}
$(target).toggle();
$(target).siblings('.agenda-description-less-btn').toggle();
$(target).siblings('.agenda-description-more-text').toggle();
}
function showLess (event) {
let target = event.target;
if (event.target.tagName === 'SPAN') {
target = event.target.parentElement;
}
$(target).toggle();
$(target).siblings('.agenda-description-more-btn').toggle();
$(target).siblings('.agenda-description-more-text').toggle();
}
$(function () { // page loaded
let shiftKeyHold = false;
// watch for keyup events for this page
window.addEventListener('keyup', (event) => {
if (event.keyCode === 16) { // shift
shiftKeyHold = false;
return;
}
// quit if the user is not holding the shift key
if (!shiftKeyHold) { return; }
if (event.keyCode === 73) { // i
$('.agenda-description').toggle();
}
});
// watch for keydown events for this page
window.addEventListener('keydown', (event) => {
if (event.keyCode === 16) { // shift
shiftKeyHold = true;
}
});
// if the user clicks something, remove shift hold
window.addEventListener('mousedown', (event) => {
shiftKeyHold = false;
});
// if the user focus is not in the web page, remove shift hold
window.addEventListener('blur', (event) => {
shiftKeyHold = false;
});
});
</script>
</body>
</html>