-
Notifications
You must be signed in to change notification settings - Fork 18
/
destinations.yml
1146 lines (1009 loc) · 32.5 KB
/
destinations.yml
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
# PLEASE KEEP ALPHABETICAL ORDER BY ID (IN CASE OF CONFERENCES, WITHIN YEARS)
# JOURNALS
- id: AHN
name: Ad Hoc Networks
url: https://www.sciencedirect.com/journal/ad-hoc-networks
type: journal
- id: COSE
name: Computers & Security Journal
acronym: COSE
url: https://www.sciencedirect.com/journal/computers-and-security
type: journal
- id: FMSD
name: Formal Methods in System Design
url: https://www.springer.com/journal/10703
type: journal
- id: IC
name: Information and Computation
url: https://www.sciencedirect.com/journal/information-and-computation
type: journal
- id: IEEE_SP
name: IEEE Security & Privacy
url: https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=8013
type: journal
- id: IJFCS
name: International Journal of Foundations of Computer Science
url: https://www.worldscientific.com/worldscinet/ijfcs
type: journal
- id: IJIS
name: International Journal of Information Security
url: https://www.springer.com/journal/10207
type: journal
- id: IJISC
name: International Journal of Information Security and Cybercrime
acronym: IJISP
url: https://www.ijisc.com/
type: journal
- id: JCS
name: Journal of Computer Security
acronym: JCS
url: https://www.iospress.nl/journal/journal-of-computer-security/
type: journal
- id: JSC
name: Journal of Symbolic Computation
url: https://www.sciencedirect.com/journal/journal-of-symbolic-computation
type: journal
- id: JISA
name: Journal of Information Security and Applications
acronym: JISA
url: https://www.journals.elsevier.com/journal-of-information-security-and-applications
type: journal
- id: JOWUA
name: Journal of Wireless Mobile Networks, Ubiquitous Computing, and Dependable Applications
acronym: JoWUA
url: https://jowua.com
type: journal
- id: JSAT
name: Journal on Satisfiability, Boolean Modeling and Computation
acronym: JSAT
url: https://content.iospress.com/journals/journal-on-satisfiability-boolean-modeling-and-computation/
type: journal
- id: LMCS
name: Logical Methods in Computer Science
acronym: LMCS
url: https://lmcs.episciences.org/
type: journal
- id: MDPI-applsci
name: MDPI Journal of Applied Science
acronym: APPLSCI
url: https://www.mdpi.com/journal/applsci
type: journal
- id: SCPE
name: "Scalable Computing: Practice and Experience"
acronym: SCPES
url: https://www.scpe.org/index.php/scpe/index
type: journal
- id: SOCA
name: Service Oriented Computing and Applications
url: https://www.springer.com/journal/11761
type: journal
- id: STTT
name: International Journal on Software Tools for Technology Transfer
acronym: STTT
url: https://www.springer.com/journal/10009
type: journal
- id: T-ITS
name: IEEE Transactions on Intelligent Transportation Systems
acronym: T-ITS
url: https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=6979
type: journal
- id: TDSC
name: IEEE Transactions on Dependable and Secure Computing
acronym: TDSC
url: https://www.computer.org/csdl/journals/tq
type: journal
- id: TIFS
name: IEEE Transactions on Information Forensics and Security
acronym: TIFS
url: https://signalprocessingsociety.org/publications-resources/ieee-transactions-information-forensics-and-security
type: journal
- id: TLDKS
name: Transactions on Large-Scale Data- and Knowledge-Centered Systems
acronym: TLDKS
url: https://www.springer.com/series/8637
type: journal
- id: TOCL
name: ACM Transactions on Computational Logic
acronym: TOCL
url: https://dl.acm.org/journal/tocl
type: journal
- id: TOPS
name: ACM Transactions on Privacy and Security
acronym: TOPS
url: https://tops.acm.org/
type: journal
- id: TOSEM
name: ACM Transactions on Software Engineering and Methodology
acronym: TOSEM
url: https://dl.acm.org/journal/tosem
type: journal
- id: VTMagazine
name: IEEE Vehicular Technology Magazine
url: https://vtmagazine.ieee.org/
type: journal
# ONLINE
- id: ICTSecurityMagazine
name: ICT Security Magazine
url: https://www.ictsecuritymagazine.com/
type: website
# BOOKS
- id: SecAssAPIFinancial_book_2020
name: "Cyber-Physical Threat Intelligence for Critical Infrastructures Security: A Guide to Integrated Cyber-Physical Protection of Modern Critical Infrastructures"
url: https://nowpublishers.com/article/BookDetails/9781680836868
type: book
# CONFERENCES/WORKSHOPS
## 2010
- id: DISC2010
name: 24th International Symposium on Distributed Computing
acronym: DISC 2010
type: conference
location: Cambridge, MA, USA
startDate: "2010-09-13"
endDate: "2010-09-15"
- id: HVC2010
name: 6th International Haifa Verification Conference
acronym: HVC 2010
type: conference
location: Israel
startDate: "2010-10-04"
endDate: "2010-10-07"
- id: IJCAR2010
name: 4th International Joint Conference on Automated Reasoning
acronym: IJCAR 2010
proceedings: Proceedings of the 4th International Joint Conference on Automated Reasoning (IJCAR 2010)
type: conference
location: Edinburgh, UK
startDate: "2010-07-16"
endDate: "2010-07-19"
- id: STM2010
name: 6th International Workshop on Security and Trust Management
acronym: STM 2010
type: workshop
location: Athens, Greece
startDate: "2010-09-23"
endDate: "2010-09-24"
- id: SYNASC2010
name: 12th International Symposium on Symbolic and Numeric Algorithms for Scientific Computing
acronym: SYNASC 2010
type: conference
location: Timisoara, Romania
startDate: "2010-09-23"
endDate: "2010-09-26"
## 2011
- id: ASIACCS2011
name: 6th ACM Symposium on Information, Computer and Communications Security
acronym: ASIACCS '11
type: conference
location: Hong Kong, China
startDate: "2011-03-22"
endDate: "2011-03-24"
- id: CADE2011
name: 23rd International Conference on Automated Deduction
acronym: CADE 2011
type: conference
location: Wroclaw, Poland
startDate: "2011-07-31"
endDate: "2011-08-05"
- id: FroCoS2011
name: 8th International Symposium on Frontiers of Combining Systems
acronym: FroCoS 2011
url: https://conferences.mpi-inf.mpg.de/frocos2011/
type: conference
location: Saarbrücken, Germany
startDate: "2011-10-05"
endDate: "2011-10-07"
- id: ICSC2011
name: 2011 IEEE Fifth International Conference on Semantic Computing
acronym: ICSC 2011
type: conference
location: Palo Alto, California, USA
startDate: "2011-11-18"
endDate: "2011-11-21"
- id: RP2011
name: 5th International Workshop on Reachability Problems
acronym: RP 2011
type: conference
location: Genoa, Italy
startDate: "2011-09-28"
endDate: "2011-09-30"
- id: RTA2011
name: 22nd International Conference on Rewriting Techniques and Applications
acronym: RTA'11
url: http://www.rdp2011.uns.ac.rs/rta/
type: conference
location: Novi Sad, Serbia
startDate: "2011-05-30"
endDate: "2011-06-01"
- id: STM2011
name: 7th International Workshop on Security and Trust Management
acronym: STM 2011
type: workshop
location: Copenhagen, Denmark
startDate: "2011-06-27"
endDate: "2011-06-28"
## 2012
- id: CAV2012
name: 24th International Conference on Computer Aided Verification
acronym: CAV 2012
url: http://cav12.cs.illinois.edu/
type: conference
location: Berkeley, California, USA
startDate: "2012-07-07"
endDate: "2012-07-13"
- id: CODASPY2012
name: 2nd ACM Conference on Data and Application Security and Privacy
proceedings: Proceedings of the Second ACM Conference on Data and Application Security and Privacy
acronym: CODASPY 2012
url: http://www.codaspy.org/2012/
type: conference
location: San Antonio, Texas, USA
startDate: "2012-02-07"
endDate: "2012-02-09"
- id: DBSec2012
name: 26th Annual IFIP WG 11.3 Working Conference on Data and Applications Security and Privacy
acronym: DBSec 2012
type: conference
location: Paris, France
startDate: "2012-07-11"
endDate: "2012-07-13"
- id: IJCAR2012
name: 6th International Joint Conference on Automated Reasoning
acronym: IJCAR 2012
proceedings: Proceedings of the 6th International Joint Conference on Automated Reasoning (IJCAR 2012)
type: conference
location: Manchester, UK
startDate: "2012-06-26"
endDate: "2012-06-29"
- id: LPAR2012
name: 4th NASA Formal Methods Symposium
acronym: LPAR 2012
proceedings: Proceedings of the 18th International Conference on Logic for Programming, Artificial Intelligence, and Reasoning (LPAR 2012)
type: conference
location: Merida, Venezuela
startDate: "2012-03-11"
endDate: "2012-03-15"
- id: NFM2012
name: 4th NASA Formal Methods Symposium
acronym: NFM 2012
proceedings: Proceedings of the 4th NASA Formal Methods Symposium (NFM 2012)
type: conference
location: Norfolk, Virginia, USA
startDate: "2012-04-03"
endDate: "2012-04-05"
- id: NSS2012
name: 6th International Conference on Network and System Security
acronym: NSS 2012
url: http://www.anss.org.au/nss2012/
type: conference
location: Wu Yi Shan, Fujian, China
startDate: "2012-11-21"
endDate: "2012-11-23"
- id: STM2012
name: 8th International Workshop on Security and Trust Management
acronym: STM 2012
url: http://stm2012.di.unimi.it/
type: workshop
location: Pisa, Italy
startDate: "2012-09-13"
endDate: "2012-09-14"
## 2013
- id: FPS2013
name: International Symposium on Foundations and Practice of Security
acronym: FPS 2013
url: http://conferences.telecom-bretagne.eu/fps/2013/
type: conference
location: La Rochelle, France
startDate: "2013-10-21"
endDate: "2013-10-22"
- id: FroCoS2013
name: International Symposium on Frontiers of Combining Systems
acronym: FroCoS 2013
url: https://frocos2013.loria.fr/
type: conference
location: Nancy, France
startDate: "2013-09-18"
endDate: "2013-09-20"
- id: ICITST2013
name: 8th International Conference for Internet Technology and Secured Transactions
acronym: ICITST 2013
proceedings: Proceedings of the 8th International Conference for Internet Technology and Secured Transactions
type: conference
location: London, UK
startDate: "2013-12-09"
endDate: "2013-12-12"
- id: SACMAT2013
name: 18th ACM Symposium on Access Control Models and Technologies
acronym: SACMAT 2013
url: http://www.sacmat.org/2013/index.php
type: conference
location: Amsterdam, Netherlands
startDate: "2013-06-12"
endDate: "2013-06-14"
## 2014
- id: CSET2014
name: 7th Workshop on Cyber Security Experimentation and Test
acronym: CSET '14
url: https://www.usenix.org/conference/cset14
type: workshop
location: San Diego, CA, USA
startDate: "2014-08-18"
endDate: "2014-08-18"
- id: DBSec2014
name: 28th Annual IFIP WG 11.3 Working Conference on Data and Applications Security and Privacy
acronym: DBSec 2014
url: https://dbsec2014.sba-research.org/
type: conference
location: Vienna, Austria
startDate: "2014-07-14"
endDate: "2014-07-16"
- id: NOMS2014
name: 14th IEEE/IFIP Network Operations and Management Symposium
acronym: NOMS 2014
url: https://noms2014.ieee-noms.org/
type: conference
location: Krakow, Poland
startDate: "2014-05-05"
endDate: "2014-05-09"
- id: SACMAT2014
name: 18th ACM Symposium on Access Control Models and Technologies
acronym: SACMAT 2014
url: http://www.sacmat.org/2014/index.php
type: conference
location: Newark, NJ, USA
startDate: "2014-06-20"
endDate: "2014-06-22"
- id: SmartGridSec14
name: Second Open EIT ICT Labs Workshop on Smart Grid Security
acronym: SmartGridSec14
url: https://distrinet.cs.kuleuven.be/events/essos/2014/calls-workshop-SmartGridSecurity.html
type: workshop
location: Munich, Germany
startDate: "2014-02-26"
endDate: "2014-02-26"
- id: STM2014
name: 10th International Workshop on Security and Trust Management
acronym: STM 2014
url: https://stm14.uni.lu/
type: workshop
location: Wroclaw, Poland
startDate: "2014-09-10"
endDate: "2014-09-11"
- id: TACAS2014
name: 20th International Conference on Tools and Algorithms for the Construction and Analysis of Systems
acronym: TACAS 2014
url: https://etaps.org/2014/tacas
type: conference
location: Grenoble, France
startDate: "2014-04-05"
endDate: "2014-04-13"
## 2015
- id: ASIACCS2015
name: 10th ACM Symposium on Information, Computer and Communications Security
acronym: ASIACCS2015
url: http://icsd.i2r.a-star.edu.sg/asiaccs15/index.php
type: conference
location: Singapore, Malaysia
startDate: "2015-04-14"
endDate: "2015-04-17"
- id: CNS2015
name: 2015 IEEE Conference on Communications and Network Security
acronym: CNS
url: https://cns2015.ieee-cns.org/
type: conference
location: Florence, Italy
startDate: "2015-09-28"
endDate: "2015-09-30"
- id: DBSec2015
name: 29th Annual IFIP WG 11.3 Working Conference on Data and Applications Security and Privacy
acronym: DBSec 2015
url: http://dbsec2015.di.unimi.it/
type: conference
location: Fairfax, VA, USA
startDate: "2015-06-13"
endDate: "2015-06-15"
- id: MIST2015
name: 7th ACM CCS International Workshop on Managing Insider Security Threats
acronym: MIST 2015
type: workshop
location: Denver, Colorado, US
startDate: "2015-10-12"
endDate: "2015-10-16"
- id: POST2015
name: 4th International Conference on Principles of Security and Trust
proceedings: Principles of Security and Trust
acronym: POST 2015
type: conference
location: London, UK
startDate: "2015-04-11"
endDate: "2015-04-18"
- id: SAC2015
name: 30th Annual ACM Symposium on Applied Computing
acronym: SAC 2015
proceedings: Proceedings of the 30th Annual ACM Symposium on Applied Computing
url: https://www.sigapp.org/sac/sac2015/
type: conference
location: Salamanca, Spain
startDate: "2015-04-13"
endDate: "2015-04-17"
- id: SACMAT2015
name: 20th ACM Symposium on Access Control Models and Technologies
acronym: SACMAT 2015
proceedings: Proceedings of the 20th ACM Symposium on Access Control Models and Technologies (SACMAT 2015)
url: http://www.sacmat.org/2015/
type: conference
location: Vienna, Austria
startDate: "2015-06-01"
endDate: "2015-06-03"
- id: SECRYPT2015
name: 12th International Conference on Security and Cryptography
acronym: SECRYPT 2015
proceedings: Proceedings of the 12th International Conference on Security and Cryptography
url: https://secrypt.scitevents.org/?y=2015
type: conference
location: Colmar, France
startDate: "2015-07-20"
endDate: "2015-07-22"
- id: STM2015
name: 11th International Workshop on Security and Trust Management
acronym: STM 2015
url: http://stm2015.di.unimi.it/
type: workshop
location: Vienna, Austria
startDate: "2015-09-21"
endDate: "2015-09-22"
- id: TaPP2015
name: 7th International Workshop on Theory and Practice of Provenance
acronym: TaPP 2015
url: http://workshops.inf.ed.ac.uk/tapp2015/index.html
type: workshop
location: Edinburgh, Scotland
startDate: "2015-07-08"
endDate: "2015-07-09"
## 2016
- id: ABAC2016
name: 1st International Workshop on Attribute Based Access Control
acronym: ABAC 2016
url: https://sites.google.com/site/abacworkshop/
type: workshop
location: New Orleans, LA, USA
startDate: "2016-03-11"
endDate: "2016-03-11"
- id: ESSoS2016
name: International Symposium on Engineering Secure Software and Systems
acronym: ESSoS 2016
url: https://distrinet.cs.kuleuven.be/events/essos/2016/index.html
type: conference
location: London, UK
startDate: "2016-04-06"
endDate: "2016-04-08"
- id: FDSE2016
name: 3rd International Conference on Future Data and Security Engineering
acronym: FDSE 2016
url: http://www.cse.hcmut.edu.vn/fdse2016/
type: conference
location: Can Tho City, Vietnam
startDate: "2016-11-23"
endDate: "2016-11-25"
- id: NDSS2016
name: Network and Distributed System Security Symposium
acronym: NDSS 2016
url: https://www.ndss-symposium.org/ndss2016/
type: conference
location: San Diego, CA, USA
startDate: "2016-02-21"
endDate: "2016-02-24"
- id: RTSI2016
name: 2nd International Forum on Research and Technologies for Society and Industry
acronym: RTSI 2016
type: forum
location: Bologna, Italy
startDate: "2016-09-07"
endDate: "2016-09-09"
- id: SACMAT2016
name: 21st ACM Symposium on Access Control Models And Technologies
acronym: SACMAT 2016
url: http://www.sacmat.org/2016/
type: conference
location: Shanghai, China
startDate: "2016-06-05"
endDate: "2016-06-08"
- id: SECRYPT2016
name: 13th International Conference on Security and Cryptography
acronym: SECRYPT 2016
url: http://www.secrypt.org/?y=2016
type: conference
location: Lisbon, Portugal
startDate: "2016-07-26"
endDate: "2016-07-28"
- id: TACAS2016
name: 22nd International Conference on Tools and Algorithms for the Construction and Analysis of Systems
acronym: TACAS 2016
type: conference
location: Eindhoven, The Netherlands
startDate: "2016-04-02"
endDate: "2016-04-08"
## 2017
- id: CODASPY2017
name: 7th ACM Conference on Data and Application Security and Privacy
proceedings: Proceedings of the Seventh ACM Conference on Data and Application Security and Privacy
acronym: CODASPY 2017
url: http://www.codaspy.org/2017/
type: conference
location: Scottsdale, Arizona, USA
startDate: "2017-03-22"
endDate: "2017-03-24"
- id: EUROSP2017
name: 2nd IEEE European Symposium on Security and Privacy
acronym: EUROS&P 2017
url: https://www.ieee-security.org/TC/EuroSP2017/
type: conference
location: Paris, France
startDate: "2017-04-26"
endDate: "2017-04-28"
- id: IFIPSEC2017
name: 32nd International Conference on ICT Systems Security and Privacy Protection
acronym: IFIPSEC 2017
url: https://ifipsec.org/2017/
type: conference
location: Rome, Italy
startDate: "2017-05-29"
endDate: "2017-05-31"
- id: SACMAT2017
name: 22nd ACM Symposium on Access Control Models And Technologies
acronym: SACMAT 2017
type: conference
location: Indianapolis, USA
startDate: "2017-06-21"
endDate: "2017-06-23"
- id: SAFECOMP2017
name: International Conference on Computer Safety, Reliability, and Security
acronym: SAFECOMP 2017
url: https://safecomp17.fbk.eu/
type: conference
location: Trento, Italy
startDate: "2017-09-12"
endDate: "2017-09-15"
- id: SECRYPT2017
name: 14th International Conference on Security and Cryptography
acronym: SECRYPT 2017
url: http://www.secrypt.org/?y=2017
type: conference
location: Madrid, Spain
startDate: "2017-07-24"
endDate: "2017-07-26"
- id: SEFM2017
name: 15th International Conference on Software Engineering and Formal Methods
acronym: SEFM 2017
url: https://sefm17.fbk.eu/
type: conference
location: Trento, Italy
startDate: "2017-09-04"
endDate: "2017-09-08"
- id: WiSec2017
name: 10th ACM Conference on Security and Privacy in Wireless and Mobile Networks
acronym: WiSec 2017
url: https://wisec2017.ccs.neu.edu/
type: conference
location: Boston, Massachusetts, USA
startDate: "2017-07-18"
endDate: "2017-07-20"
## 2018
- id: FPS2018
name: 11th International Symposium on Foundations & Practice of Security
acronym: FPS 2018
url: http://fps2018.encs.concordia.ca/
type: conference
location: Montreal, Canada
startDate: "2018-11-13"
endDate: "2018-11-15"
- id: PIM2018
name: 13th IFIP International Summer School on Privacy and Identity Management
proceedings: Privacy and Identity Management. Fairness, Accountability, and Transparency in the Age of Big Data
type: summer school
location: Vienna, Austria
startDate: "2018-08-20"
endDate: "2018-08-24"
- id: POST2018
name: 7th International Conference on Principles of Security and Trust
proceedings: Principles of Security and Trust
acronym: POST 2018
url: https://www.etaps.org/2018/post
type: conference
location: Thessaloniki, Greece
startDate: "2018-04-14"
endDate: "2018-04-20"
- id: SACMAT2018
name: 23rd ACM Symposium on Access Control Models And Technologies
acronym: SACMAT 2018
url: http://www.sacmat.org/2018/
type: conference
location: Indianapolis, USA
startDate: "2018-06-13"
endDate: "2018-06-15"
- id: SIoT2018
name: 7th International Workshop on Secure Internet of Things
acronym: SIoT 2018
url: https://ieeexplore.ieee.org/xpl/conhome/8892390/proceeding
type: workshop
location: Barcelona, Spain
startDate: "2018-09-06"
endDate: "2018-09-07"
- id: SSPIM2018
name: 13th International IFIP Summer School on Privacy and Identity Management
url: https://www.etaps.org/2018/post
type: workshop
location: Vienna, Austria
startDate: "2018-08-22"
endDate: "2018-08-22"
- id: WiMob2018
name: 14th International Conference on Wireless and Mobile Computing, Networking and Communications
acronym: WiMob 2018
url: http://www.wimob.org/wimob2018/
type: conference
location: Limassol, Cyprus
startDate: "2018-10-15"
endDate: "2018-10-17"
## 2019
- id: DBSec2019
name: 33rd Annual IFIP WG 11.3 Conference on Data and Applications Security and Privacy
proceedings: Proceedings of the 33rd Annual IFIP WG 11.3 Conference on Data and Applications Security and Privacy
acronym: DBSec 2019
url: https://dbsec2019.cse.sc.edu/
type: conference
location: Charleston, SC, USA
startDate: "2019-07-15"
endDate: "2019-07-17"
- id: ETAA2019
name: 2nd International Workshop on Emerging Technologies for Authorization and Authentication
proceedings: Emerging Technologies for Authorization and Authentication
acronym: ETAA 2019
url: https://www.iit.cnr.it/etaa2019/index.html
type: workshop
location: Luxembourg
startDate: "2019-09-27"
endDate: "2019-09-27"
- id: FPS2019
name: 12th International Symposium on Foundations & Practice of Security
acronym: FPS 2019
url: https://fps2019.sciencesconf.org/
type: conference
location: Toulouse, France
startDate: "2019-11-05"
endDate: "2019-11-07"
- id: GCIoT2019
name: 2019 IEEE Global Conference on Internet of Things
acronym: GCIoT 2019
url: https://ieeexplore.ieee.org/xpl/conhome/9043328/proceeding
type: conference
location: Dubai, United Arab Emirates
startDate: "2019-12-04"
endDate: "2019-12-07"
- id: IEEESERVICES2019
name: IEEE SERVICES Workshop on Cyber Security & Resilience in the Internet of Things
acronym: IEEE SERVICES CSRIoT 2019
url: https://conferences.computer.org/services/2019/
type: workshop
location: Milan, Italy
startDate: "2019-07-08"
endDate: "2019-07-13"
- id: IoTBDS2019
name: 4th International Conference on Internet of Things, Big Data and Security
acronym: IoTBDS 2019
url: https://iotbds.scitevents.org/?y=2019
type: conference
location: Heraklion, Crete, Greece
startDate: "2019-05-02"
endDate: "2019-05-04"
- id: SECRYPT2019
name: 16th International Conference on Security and Cryptography
acronym: SECRYPT 2019
url: http://www.secrypt.icete.org/?y=2019
type: conference
location: Prague, Czech Republic
startDate: "2019-07-26"
endDate: "2019-07-28"
- id: MSTEC2019
name: 1st Model-driven Simulation and Training Environments for Cybersecurity Workshop
acronym: MSTEC 2019
url: https://www.threat-arrest.eu/html/mstec-2019/
type: workshop
location: Luxembourg, Luxembourg
startDate: "2019-09-26"
endDate: "2019-09-27"
- id: STM2019
name: 15th International Workshop on Security and Trust Management
acronym: STM 2019
url: https://stm2019.uni.lu/
type: workshop
location: Luxembourg
startDate: "2019-09-26"
endDate: "2019-09-27"
## 2020
- id: 5GWF20
name: 3rd IEEE 5G World Forum
acronym: 5GWF20
url: https://ieee-wf-5g.org/
type: conference
location: Virtual Event
startDate: "2020-09-10"
endDate: "2020-10-10"
- id: ASIACCS2020
name: 15th ACM ASIA Conference on Computer and Communications Security
acronym: ASIACCS 2020
url: https://asiaccs2020.cs.nthu.edu.tw/
type: conference
location: Virtual Event
startDate: "2020-10-05"
endDate: "2020-10-09"
- id: CODASPY2020
name: 10th ACM Conference on Data and Application Security and Privacy
proceedings: Proceedings of the Tenth ACM Conference on Data and Application Security and Privacy
acronym: CODASPY 2020
url: http://www.codaspy.org/2020/
type: conference
location: Online
startDate: "2020-08-03"
endDate: "2020-08-04"
- id: CPS4CIP2020
name: 1st International Workshop on Cyber-Physical Security for Critical Infrastructures Protection
acronym: CPS4CIP 2020
url: https://sites.google.com/fbk.eu/cps4cip20
type: workshop
location: Online
startDate: "2020-09-18"
endDate: "2020-09-18"
- id: DETIPS2020
name: 25th European Symposium on Research in Computer Security
acronym: DETIPS2020
url: https://www.surrey.ac.uk/esorics-2020
type: conference
location: Virtual Event
startDate: "2020-09-14"
endDate: "2020-09-18"
- id: ETAA2020
name: 3rd International Workshop on Emerging Technologies for Authorization and Authentication
acronym: ETAA2020
url: https://www.iit.cnr.it/etaa2020/
type: conference
location: Virtual Event
startDate: "2020-09-14"
endDate: "2020-09-18"
- id: ITASEC2020
name: Italian Conference on CyberSecurity
acronym: ITASEC 2020
url: https://itasec.it/
type: conference
location: Ancona, Italy
startDate: "2020-02-05"
endDate: "2020-02-07"
- id: SACMAT2020
name: 25th ACM Symposium on Access Control Models And Technologies
acronym: SACMAT 2020
url: https://www.sacmat.org/2020/index.php
type: conference
location: Barcelona, Spain
startDate: "2020-06-10"
endDate: "2020-06-12"
- id: SECRYPT2020
name: 17th International Conference on Security and Cryptography
acronym: SECRYPT 2020
url: http://www.secrypt.org/?y=2020
type: conference
location: Virtual Event
startDate: "2020-07-08"
endDate: "2020-07-10"
## 2021
- id: CODASPY2021
name: 11th ACM Conference on Data and Application Security and Privacy
proceedings: Proceedings of the Eleventh ACM Conference on Data and Application Security and Privacy
acronym: CODASPY 2021
url: http://www.codaspy.org/2021/
type: conference
location: Online
startDate: "2021-04-26"
endDate: "2021-04-28"
- id: DBSec2021
name: 35th Annual IFIP WG 11.3 Conference on Data and Applications Security and Privacy
proceedings: Proceedings of the 35th Annual IFIP WG 11.3 Conference on Data and Applications Security and Privacy
acronym: DBSec 2021
url: https://wpsites.ucalgary.ca/dbsec2021/
type: conference
location: Virtual Event
startDate: "2021-07-19"
endDate: "2021-07-20"
- id: ETAA2021
name: 4th International Workshop on Emerging Technologies for Authorization and Authentication
acronym: ETAA2021
url: https://hosting.services.iit.cnr.it/etaa2021/
type: conference
location: Virtual Event
startDate: "2021-10-8"
endDate: "2021-10-8"
- id: ETACS2021
name: The 16th International Conference on Availability, Reliability and Security (ARES 2021)
acronym: ETACS 2021
url: https://www.ares-conference.eu/workshops/etacs-2021/
type: conference
location: Virtual Event
startDate: "2021-08-17"
endDate: "2021-08-20"
- id: ICSE2021
name: 43rd Internation Conference on Software Engineering
acronym: ICSE 2021
url: https://conf.researchr.org/home/icse-2021
type: conference
location: Virtual Event (originally in Madrid, Spain)
startDate: "2021-05-24"
endDate: "2021-05-28"
- id: IOTSECFOR2021
name: The 5th International Workshop on Security and Forensics of IoT
acronym: IoT-SECFOR 2021
url: https://www.ares-conference.eu/workshops/iot-secfor-2021/
type: workshop
location: Virtual Event
startDate: "2021-08-17"
endDate: "2021-08-20"
- id: SECRYPT2021
name: 18th International Conference on Security and Cryptography
acronym: SECRYPT 2021
url: http://www.secrypt.org/?y=2021
type: conference
location: Virtual Event
startDate: "2021-07-06"
endDate: "2021-07-08"
- id: SMDS2021
name: IEEE International Conference on Smart Data Services
acronym: SMDS 2021
url: https://conferences.computer.org/smds/2021/
type: conference
location: Virtual Event
startDate: "2021-09-05"
endDate: "2021-09-11"
## 2022
- id: CODASPY2022
name: 12th ACM Conference on Data and Application Security and Privacy
proceedings: Proceedings of the Twelfth ACM Conference on Data and Application Security and Privacy
acronym: CODASPY 2022
url: http://www.codaspy.org/2022/
type: conference
location: Baltimore, United States
startDate: "2022-04-25"
endDate: "2022-04-27"
- id: DBSEC2022
name: 36th Annual IFIP WG 11.3 Conference on Data and Applications Security and Privacy
proceedings: Proceedings of the 36th Annual IFIP WG 11.3 Conference on Data and Applications Security and Privacy
acronym: DBSec 2022
url: http://cs.iit.edu/~dbsec2022/
type: conference
location: Newark, NJ, USA
startDate: "2022-07-18"
endDate: "2022-07-20"