-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmax.bib
More file actions
12892 lines (11829 loc) · 445 KB
/
Copy pathmax.bib
File metadata and controls
12892 lines (11829 loc) · 445 KB
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
% This file is in alphabetical order of lastname-year-keyword, e.g., ur-17-data-driven-psm
% This way it is easy to avoid and detect duplicate entries.
%
% To add a new entry, copy an existing one to the correct position in the file, and edit/update ALL fields.
%
% Common issues
% USENIX Association -> USENIX
% ACM SIGSAC Conference -> ACM Conference
% The Who Are You -> Who Are You?!
% missing month
% SOUPS '18 -> SOUPS~'18
% van Oorschot, Paul C. -> Van Oorschot, Paul C.
% Cranor, Lorrie -> Cranor, Lorrie Faith
% Approved all correct
@inproceedings{abbott-20-mandatory-2fa,
author = {Abbott, Jacob and Patil, Sameer},
title = {{How Mandatory Second Factor Affects the Authentication User Experience}},
booktitle = {ACM Conference on Human Factors in Computing Systems},
year = {2020},
series = {CHI~'20},
pages = {1--13},
address = {Honolulu, Hawaii, USA},
month = apr,
publisher = {ACM}
}
% Approved all correct
@inproceedings{abdou-15-ssh,
author = {Abdou, AbdelRahman and Barrera, David and Van Oorschot, Paul C.},
title = {{What Lies Beneath? Analyzing Automated SSH Bruteforce Attacks}},
booktitle = {International Conference on Passwords},
year = {2015},
series = {PASSWORDS~'15},
pages = {72--91},
address = {Cambridge, United Kingdom},
month = dec,
publisher = {Springer}
}
% Approved all correct
@inproceedings{abrokwa-21-android-vs-ios,
author = {Abrokwa, Desiree and Das, Shruti and Akgul, Omer and Mazurek, Michelle L.},
title = {{Comparing Security and Privacy Attitudes Among U.S. Users of Different Smartphone and Smart-Speaker Platforms}},
booktitle = {Symposium on Usable Privacy and Security},
year = {2021},
series = {SOUPS~'21},
pages = {139--158},
address = {Virtual Conference},
month = aug,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{abu-salma-17-communication,
author = {Abu-Salma, Ruba and Sasse, M. Angela and Bonneau, Joseph and Danilova, Anastasia and Naiakshina, Alena and Smith, Matthew},
title = {{Obstacles to the Adoption of Secure Communication Tools}},
booktitle = {IEEE Symposium on Security and Privacy},
year = {2017},
series = {SP~'17},
pages = {137--153},
address = {San Jose, California, USA},
month = may,
publisher = {IEEE}
}
% Approved all correct
@inproceedings{acar-17-crypto-apis,
author = {Acar, Yasemin and Backes, Michael and Fahl, Sascha and Garfinkel, Simson and Kim, Doowon and Mazurek, Michelle L. and Stransky, Christian},
title = {{Comparing the Usability of Cryptographic APIs}},
booktitle = {IEEE Symposium on Security and Privacy},
year = {2017},
series = {SP~'17},
pages = {154--171},
address = {San Jose, California, USA},
month = may,
publisher = {IEEE}
}
% Approved all correct
@techreport{ackerman-17-2fa-adoption,
author = {Ackerman, Preston},
title = {{Impediments to Adoption of Two-factor Authentication by Home End-Users}},
institution = {SANS Institute},
year = {2017},
type = {Technical Report},
number = {37607},
month = feb
}
% Approved all correct
@article{acquisti-17-nudges,
author = {Acquisti, Alessandro and Adjerid, Idris and Balebako, Rebecca and Brandimarte, Laura and Cranor, Lorrie Faith and Komanduri, Saranga and Leon, Pedro Giovanni and Sadeh, Norman and Schaub, Florian and Sleeper, Manya and Wang, Yang and Wilson, Shomir},
title = {{Nudges for Privacy and Security: Understanding and Assisting Users' Choices Online}},
journal = {ACM Computing Surveys},
year = {2017},
volume = {50},
number = {3},
pages = {44:1--44:41},
month = aug,
publisher = {ACM}
}
% Approved all correct
@article{adams-99-users-not-enemy,
author = {Adams, Anne and Sasse, Martina Angela},
title = {{Users Are Not the Enemy}},
journal = {Communications of the ACM},
year = {1999},
volume = {42},
number = {12},
pages = {40--46},
month = dec,
publisher = {ACM}
}
% Approved all correct
@misc{adrian-23-remove-padlock,
author = {Adrian, David and Chen, Serena and DeBlasio, Joe and Stark, Emily and {von Zezschwitz}, Emanuel},
title = {{Chromium Blog: An Update on the Lock Icon}},
note = {\url{https://blog.chromium.org/2023/05/an-update-on-lock-icon.html}, as of \today},
month = may,
year = {2023}
}
% Approved all correct
@inproceedings{agarwal-13-embarrass,
author = {Agarwal, Lalit and Shrivastava, Nisheeth and Jaiswal, Sharad and Panjwani, Saurabh},
title = {{Do Not Embarrass: Re-Examining User Concerns for Online Tracking and Advertising}},
booktitle = {Symposium on Usable Privacy and Security},
year = {2013},
series = {SOUPS~'13},
pages = {8:1--8:13},
address = {Newcastle, United Kingdom},
month = jul,
publisher = {ACM}
}
% Approved all correct
@misc{agilebits-23-passkeys-dir,
author = {{AgileBits, Inc.}},
title = {{Passkeys.directory}},
note = {\url{https://passkeys.directory}, as of \today},
month = jun,
year = {2023}
}
% Approved all correct
@article{agrafiotis-18-cyber-harms,
author = {Agrafiotis, Ioannis and Nurse, Jason R. C. and Goldsmith, Michael and Creese, Sadie and Upton, David},
title = {{A Taxonomy of Cyber-Harms: Defining the Impacts of Cyber-Attacks and Understanding How They Propagate}},
journal = {Journal of Cybersecurity},
year = {2018},
volume = {4},
number = {1},
pages = {1--15},
month = oct,
publisher = {Oxford University Press}
}
% Approved all correct
@inproceedings{ahmed-19-shared,
author = {Ahmed, Syed Ishtiaque and Haque, Md. Romael and Haider, Irtaza and Chen, Jay and Dell, Nicola},
title = {{``Everyone Has Some Personal Stuff'': Designing to Support Digital Privacy with Shared Mobile Phone Use in Bangladesh}},
booktitle = {ACM Conference on Human Factors in Computing Systems},
year = {2019},
series = {CHI~'19},
pages = {180:1--180:13},
address = {Glasgow, Scotland, United Kingdom},
month = may,
publisher = {ACM}
}
% Approved all correct
@misc{aicpa-11-soc2,
author = {{American Institute of CPAs}},
title = {{System and Organization Controls 2 (SOC~2) -- Trust Services Criteria for Security, Availability, Processing Integrity, Confidentiality, and Privacy}},
note = {\url{https://www.aicpa-cima.com/resources/landing/system-and-organization-controls-soc-suite-of-services}, as of \today},
month = jun,
year = {2011}
}
% Approved all correct
@misc{akamai-20-credential-stuffing,
author = {{Akamai Technologies, Inc.}},
title = {{The State of the Internet: Loyalty for Sale -- Credential Abuse}},
note = {\url{https://www.akamai.com/our-thinking/the-state-of-the-internet}, as of \today},
month = oct,
year = {2020}
}
% Approved all correct
@inproceedings{akhawe-13-alice,
author = {Akhawe, Devdatta and Felt, Adrienne Porter},
title = {{Alice in Warningland: A Large-Scale Field Study of Browser Security Warning Effectiveness}},
booktitle = {USENIX Security Symposium},
year = {2013},
series = {SSYM~'13},
pages = {257--272},
address = {Washington, District of Columbia, USA},
month = jul,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{al-abdulwahid-15-spu-perception,
author = {Al Abdulwahid, Abdulwahid and Clarke, Nathan and Stengel, Ingo and Furnell, Steven and Reich, Christoph},
title = {{Security, Privacy and Usability -- A Survey of Users' Perceptions and Attitudes}},
booktitle = {Trust, Privacy and Security in Digital Business},
year = {2015},
series = {TrustBus~'15},
pages = {153--168},
address = {Valencia, Spain},
month = sep,
publisher = {Springer}
}
% Approved all correct
@article{al-alawi-19-banking,
author = {Al{-}Alawi, Adel Ismail and Al-Bassam, Sara Abdulrahman},
title = {{Assessing the Factors of Cybersecurity Awareness in the Banking Sector}},
journal = {Arab Gulf Journal of Scientific Research},
year = {2019},
volume = {37},
number = {4},
pages = {17--32},
month = jun,
publisher = {Emerald Publishing}
}
% Approved all correct
@inproceedings{al-roomi-23-login-policies,
author = {Al{-}Roomi, Suood Abdulaziz and Li, Frank},
title = {{A Large-Scale Measurement of Website Login Policies}},
booktitle = {USENIX Security Symposium},
year = {2023},
series = {SSYM~'23},
pages = {2061--2078},
address = {Anaheim, California, USA},
month = aug,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{alaca-16-fingerprint-auth,
author = {Alaca, Furkan and Van Oorschot, Paul C.},
title = {{Device Fingerprinting for Augmenting Web Authentication: Classification and Analysis of Methods}},
booktitle = {Annual Conference on Computer Security Applications},
year = {2016},
series = {ACSAC~'16},
pages = {289--301},
address = {Los Angeles, California, USA},
month = dec,
publisher = {ACM}
}
% Approved all correct
@inproceedings{alam-23-pw-sharing,
author = {Alam, Aniqa and Stobert, Elizabeth and Biddle, Robert},
title = {{``This Is Different from the Western World'': Understanding Password Sharing Among Young Bangladeshis}},
booktitle = {Workshop on Usable Security and Privacy},
year = {2023},
series = {USEC~'23},
pages = {},
address = {San Diego, California, USA},
month = feb,
publisher = {ISOC}
} % NDSS does not have page numbers
% Approved all correct
@inproceedings{alam-19-webauthn-developer-poster,
author = {Alam, Aftab and Krombholz, Katharina and Bugiel, Sven},
title = {{Poster: Let History Not Repeat Itself (This Time) -- Tackling WebAuthn Developer Issues Early On}},
booktitle = {ACM Conference on Computer and Communications Security},
year = {2019},
series = {CCS~'19},
pages = {2669--2671},
address = {London, United Kingdom},
month = nov,
publisher = {ACM}
}
% Approved all correct
@article{albayram-17-2fa-videos,
author = {Albayram, Yusuf and Khan, Mohammad Maifi Hasan and Fagan, Michael},
title = {{A Study on Designing Video Tutorials for Promoting Security Features: A Case Study in the Context of Two-Factor Authentication (2FA)}},
journal = {International Journal of Human–Computer Interaction},
year = {2017},
volume = {33},
number = {11},
pages = {927--942},
month = mar,
publisher = {Taylor \& Francis}
}
% Approved all correct
@inproceedings{albayram-17-fear-appeal,
author = {Albayram, Yusuf and Khan, Mohammad Maifi Hasan and Jensen, Theodore and Nguyen, Nhan},
title = {{``...better to use a lock screen than to worry about saving a few seconds of time'': Effect of Fear Appeal in the Context of Smartphone Locking Behavior}},
booktitle = {Symposium on Usable Privacy and Security},
year = {2017},
series = {SOUPS~'17},
pages = {49--63},
address = {Santa Clara, California, USA},
month = jul,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{ali-20-guardian,
author = {Ali, Suzan and Elgharabawy, Mounir and Duchaussoy, Quentin and Mannan, Mohammad and Youssef, Amr},
title = {{Betrayed by the Guardian: Security and Privacy Risks of Parental Control Solutions}},
booktitle = {Annual Conference on Computer Security Applications},
year = {2020},
series = {ACSAC~'20},
pages = {69--83},
address = {Austin, Texas, USA},
month = dec,
publisher = {ACM}
}
% Approved all correct
@inproceedings{aljaffan-17-psv,
author = {Aljaffan, Nouf and Yuan, Haiyue and Li, Shujun},
title = {{PSV (Password Security Visualizer): From Password Checking to User Education}},
booktitle = {Conference on Human Aspects of Information Security, Privacy and Trust},
year = {2017},
series = {HAS~'17},
pages = {191--211},
address = {Vancouver, British Columbia, Canada},
month = jul,
publisher = {Springer}
}
% Approved all correct
@inproceedings{alkaldi-16-adoption-phone-managers,
author = {Alkaldi, Nora and Renaud, Karen},
title = {{Why Do People Adopt, or Reject, Smartphone Password Managers?}},
booktitle = {European Workshop on Usable Security},
year = {2016},
series = {EuroUSEC~'16},
pages = {},
address = {Darmstadt, Germany},
month = jul,
publisher = {ISOC}
} % EuroUSEC/NDSS does not have page numbers
% Approved all correct
@inproceedings{almuhimedi-14-malware-warning,
author = {Almuhimedi, Hazim and Felt, Adrienne Porter and Reeder, Robert W. and Consolvo, Sunny},
title = {{Your Reputation Precedes You: History, Reputation, and the Chrome Malware Warning}},
booktitle = {Symposium on Usable Privacy and Security},
year = {2014},
series = {SOUPS~'14},
pages = {113--128},
address = {Menlo Park, California, USA},
month = jul,
publisher = {USENIX}
}
% Approved all correct
@article{alsaleh-12-online-guessing,
author = {Alsaleh, Mansour and Mannan, Mohammad and Van Oorschot, Paul C.},
title = {{Revisiting Defenses against Large-Scale Online Password Guessing Attacks}},
journal = {IEEE Transactions on Dependable and Secure Computing},
year = {2012},
volume = {9},
number = {1},
pages = {128--141},
month = jan,
publisher = {IEEE}
}
% Approved all correct
@inproceedings{amft-23-cred-management,
author = {Amft, Sabrina and H{\"o}ltervennhoff, Sandra and Huaman, Nicolas and Acar, Yasemin and Fahl, Sascha},
title = {{``Would You Give the Same Priority to the Bank and a Game? I Do Not!'' Exploring Credential Management Strategies and Obstacles during Password Manager Setup}},
booktitle = {Symposium on Usable Privacy and Security},
year = {2023},
series = {SOUPS~'23},
pages = {171--190},
address = {Anaheim, California, USA},
month = aug,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{amft-23-recover-mfa,
author = {Amft, Sabrina and H{\"o}ltervennhoff, Sandra and Huaman, Nicolas and Krause, Alexander and Simko, Lucy and Acar, Yasemin and Fahl, Sascha},
title = {{``We've Disabled MFA for You'': An Evaluation of the Security and Usability of Multi-Factor Authentication Recovery Deployments}},
booktitle = {ACM Conference on Computer and Communications Security},
year = {2023},
series = {CCS~'23},
pages = {3138--3152},
address = {Copenhagen, Denmark},
month = nov,
publisher = {ACM}
}
% Approved all correct
@misc{amitay-11-iphone-pins,
author = {Amitay, Daniel},
title = {{Most Common iPhone Passcodes}},
note = {\url{http://danielamitay.com/blog/2011/6/13/most-common-iphone-passcodes}, as of \today},
month = jun,
year = {2011}
}
% Approved all correct
@inproceedings{ammari-15-children-identity,
author = {Ammari, Tawfiq and Kumar, Priya and Lampe, Cliff and Schoenebeck, Sarita},
title = {{Managing Children's Online Identities: How Parents Decide What to Disclose about Their Children Online}},
booktitle = {ACM Conference on Human Factors in Computing Systems},
year = {2015},
series = {CHI~'15},
pages = {1895--1904},
address = {Seoul, Republic of Korea},
month = apr,
publisher = {ACM}
}
% Approved all correct
@article{anderson-06-economics,
author = {Anderson, Ross and Moore, Tyler},
title = {{The Economics of Information Security}},
journal = {Science},
year = {2006},
volume = {314},
number = {5799},
pages = {610--613},
month = oct,
publisher = {AAAS}
}
% Approved all correct
@incollection{anderson-13-cost-cybercrime,
author = {Anderson, Ross and Barton, Chris and B{\"o}hme, Rainer and Clayton, Richard and {van Eeten}, Michel J.G. and Levi, Michael and Moore, Tyler and Savage, Stefan},
title = {{Measuring the Cost of Cybercrime}},
booktitle = {The Economics of Information Security and Privacy},
editor = {B{\"o}hme, Rainer},
year = {2013},
pages = {265--300},
address = {Berlin, Germany},
month = oct,
publisher = {Springer}
}
% Approved all correct
@techreport{anderson-17-older-tech-climb,
author = {Anderson, Monica and Perrin, Andrew},
title = {{Tech Adoption Climbs Among Older Adults}},
institution = {Pew Research Center},
year = {2017},
type = {Technical Report},
number = {PRC-2017-05-17},
month = may
}
% Approved all correct
@inproceedings{anderson-19-changing-cost,
author = {Anderson, Ross and Barton, Chris and B{\"o}hme, Rainer and Clayton, Richard and Gan{\'a}n, Carlos and Grasso, Tom and Levi, Michael and Moore, Tyler and Vasek, Marie},
title = {{Measuring the Changing Cost of Cybercrime}},
booktitle = {Workshop on the Economics of Information Security},
year = {2019},
series = {WEIS~'19},
pages = {1--32},
address = {Boston, Massachusetts, USA},
month = jun,
publisher = {}
} % No publisher
% Approved all correct
@book{anderson-21-security-engineering,
author = {Anderson, Ross},
title = {{Security Engineering: A Guide to Building Dependable Distributed Systems}},
year = {2021},
publisher = {Wiley},
edition = {3}
}
% Approved all correct
@inproceedings{andow-19-policylint,
author = {Andow, Benjamin and Mahmud, Samin Yaseer and Wang, Wenyu and Whitaker, Justin and Enck, William and Reaves, Bradley and Singh, Kapil and Xie, Tao},
title = {{PolicyLint: Investigating Internal Privacy Policy Contradictions on Google Play}},
booktitle = {USENIX Security Symposium},
year = {2019},
series = {SSYM~'19},
pages = {585--602},
address = {Santa Clara, California, USA},
month = aug,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{andow-20-policheck,
author = {Andow, Benjamin and Mahmud, Samin Yaseer and Whitaker, Justin and Enck, William and Reaves, Bradley and Singh, Kapil and Egelman, Serge},
title = {{Actions Speak Louder than Words: Entity-Sensitive Privacy Policy and Data Flow Analysis with PoliCheck}},
booktitle = {USENIX Security Symposium},
year = {2020},
series = {SSYM~'20},
pages = {985--1002},
address = {Virtual Conference},
month = aug,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{andreou-19-measuring-facebook-advertising,
author = {Andreou, Athanasios and Silva, M{\'{a}}rcio and Benevenuto, Fabr{\'{\i}}cio and Goga, Oana and Loiseau, Patrick and Mislove, Alan},
title = {{Measuring the Facebook Advertising Ecosystem}},
booktitle = {Symposium on Network and Distributed System Security},
year = {2019},
series = {NDSS~'19},
pages = {},
address = {San Diego, California, USA},
month = feb,
publisher = {ISOC}
} % NDSS does not have page numbers
% Approved all correct
@inproceedings{andriotis-13-pilot-study,
author = {Andriotis, Panagiotis and Tryfonas, Theo and Oikonomou, George and Yildiz, Can},
title = {{A Pilot Study on the Security of Pattern Screen-Lock Methods and Soft Side Channel Attacks}},
booktitle = {ACM Conference on Security and Privacy in Wireless and Mobile Networks},
year = {2013},
series = {WiSec~'13},
pages = {1--6},
address = {Budapest, Hungary},
month = apr,
publisher = {ACM}
}
% Approved all correct
@inproceedings{andriotis-14-pattern-psm,
author = {Andriotis, Panagiotis and Tryfonas, Theo and Oikonomou, George},
title = {{Complexity Metrics and User Strength Perceptions of the Pattern-Lock Graphical Authentication Method}},
booktitle = {Conference on Human Aspects of Information Security, Privacy and Trust},
year = {2014},
series = {HAS~'14},
pages = {115--126},
address = {Heraklion, Crete, Greece},
month = jun,
publisher = {Springer}
}
% Approved all correct
@misc{android-23-gatekeeper,
author = {{Android Open Source Project}},
title = {{Android 15 -- ``Vanilla Ice Cream'': GateKeeper -- ComputeRetryTimeout Function}},
note = {\url{https://android.googlesource.com/platform/system/gatekeeper/+/refs/heads/android15-release/gatekeeper.cpp#295}, as of \today},
month = feb,
year = {2023}
}
% Approved all correct
@misc{android-18-masterkey,
author = {{Android Open Source Project}},
title = {{Full-Disk Encryption -- Storing the Encrypted Key}},
note = {\url{https://source.android.com/security/encryption/full-disk\#storing_the_encrypted_key}, as of \today},
month = aug,
year = {2018}
}
% Approved all correct
@inproceedings{anell-20-threats,
author = {Anell, Simon and Gr{\"o}ber, Lea and Krombholz, Katharina},
title = {{End User and Expert Perceptions of Threats and Potential Countermeasures}},
booktitle = {IEEE European Symposium on Security and Privacy Workshops},
year = {2020},
series = {EuroS\&PW~'20},
pages = {230--239},
address = {Genoa, Italy},
month = sep,
publisher = {IEEE}
}
% Approved all correct
@article{angelogianni-21-fido-market,
author = {Angelogianni, Anna and Politis, Ilias and Xenakis, Christos},
title = {{How Many FIDO Protocols Are Needed? Analysing the Technology, Security and Compliance}},
journal = {ACM Computing Surveys},
year = {2024},
volume = {56},
number = {8},
pages = {1--51},
month = apr
publisher = {ACM}
}
% Approved all correct
@inproceedings{angulo-15-data-track,
author = {Angulo, Julio and Fischer-H{\"u}bner, Simone and Pulls, Tobias and W{\"a}stlund, Erik},
title = {{Usable Transparency with the Data Track: A Tool for Visualizing Data Disclosures}},
booktitle = {ACM Conference Extended Abstracts on Human Factors in Computing Systems},
year = {2015},
series = {CHI~EA~'15},
pages = {1803--1808},
address = {Seoul, Republic of Korea},
month = apr,
publisher = {ACM}
}
% Approved all correct
@inproceedings{aonzo-18-phishing-pw-android,
author = {Aonzo, Simone and Merlo, Alessio and Tavella, Giulio and Fratantonio, Yanick},
title = {{Phishing Attacks on Modern Android}},
booktitle = {ACM Conference on Computer and Communications Security},
year = {2018},
series = {CCS~'18},
pages = {1788--1801},
address = {Toronto, Ontario, Canada},
month = oct,
publisher = {ACM}
}
% Approved all correct
@misc{apple-18-password-rules,
author = {{Apple, Inc.}},
title = {{Apple Developers: Password Rules}},
note = {\url{https://developer.apple.com/password-rules/}, as of \today},
month = jun,
year = {2018}
} % https://www.youtube.com/watch?v=-0dwX2kf6Oc
% Approved all correct
@misc{apple-20-manager-quirks,
author = {{Apple, Inc.}},
title = {{Password Manager Resources}},
note = {\url{https://opensource.apple.com/projects/password-manager-resources/}, as of \today},
month = may,
year = {2020}
}
% Approved all correct
@misc{apple-21-hide-my-email,
author = {{Apple, Inc.}},
title = {{What is Hide My Email?}},
note = {\url{https://support.apple.com/en-us/HT210425}, as of \today},
month = sep,
year = {2021}
}
% Approved all correct
@misc{apple-22-forum,
author = {{Apple, Inc.}},
title = {{Apple Support Community: Notification of Sign In with Apple ID}},
note = {\url{https://discussions.apple.com/thread/253581666}, as of \today},
month = jan,
year = {2022}
}
% Approved all correct
@misc{apple-22-passkeys-e2e,
author = {{Apple, Inc.}},
title = {{About the Security of Passkeys}},
note = {\url{https://support.apple.com/en-us/HT213305}, as of \today},
month = jun,
year = {2022}
}
% Approved all correct
@misc{apple-24-ios-activation-lock,
author = {{Apple, Inc.}},
title = {{iOS: Activation Lock for iPhone and iPad}},
note = {\url{https://support.apple.com/108794}, as of \today},
month = feb,
year = {2024}
}
% Approved all correct
@misc{apple-24-ios-backup,
author = {{Apple, Inc.}},
title = {{iOS: Restore Your iPhone, iPad, or iPod Touch from a Backup}},
note = {\url{https://support.apple.com/118105}, as of \today},
month = sep,
year = {2024}
}
% Approved all correct
@misc{apple-24-stolen-device-protection,
author = {{Apple, Inc.}},
title = {{iOS: About Stolen Device Protection for iPhone}},
note = {\url{https://support.apple.com/120340}, as of \today},
month = dec,
year = {2024}
}
% Approved all correct
@misc{apple-24-ios-platform-security,
author = {{Apple, Inc.}},
title = {{iOS: Apple Platform Security Guide}},
note = {\url{https://support.apple.com/guide/security/}, as of \today},
month = dec,
year = {2024}
}
% Approved all correct
@misc{apple-25-ios-find-my,
author = {{Apple, Inc.}},
title = {{iOS: Locate a Device in Find My on iPhone}},
note = {\url{https://support.apple.com/guide/iphone/locate-a-device-iph09b087eda/}, as of \today},
month = jan,
year = {2025}
}
% Approved all correct
@inproceedings{ariana-23-password-updates,
author = {Ariana, Mirian and Grant, Ho and Stefan, Savage and Geoffrey M., Voelker},
title = {{An Empirical Analysis of Enterprise-Wide Mandatory Password Updates}},
booktitle = {Annual Conference on Computer Security Applications},
year = {2023},
series = {ACSAC~'23},
pages = {150--162},
address = {Honolulu, Hawaii, USA},
month = dec,
publisher = {ACM}
}
% Approved all correct
@article{arora-22-fido-recovery,
author = {Arora, Sunpreet S. and Badrinarayanan, Saikrishna and Raghuraman, Srinivasan and Shirvanian, Maliheh and Wagner, Kim and Watson, Gaven},
title = {{Avoiding Lock Outs: Proactive FIDO Account Recovery using Managerless Group Signatures}},
journal = {Cryptology ePrint Archive},
year = {2022},
volume = {2022/1555},
number = {},
pages = {1--46},
month = nov
} % UPDATE REQUIERED
% Approved all correct
@article{ashenden-13-ciso-culture,
author = {Ashenden, Debi and Sasse, Angela},
title = {{CISOs and Organisational Culture: Their Own Worst Enemy?}},
journal = {Computers \& Security},
year = {2013},
volume = {39},
number = {B},
pages = {396--405},
month = nov,
publisher = {Elsevier}
}
% Approved all correct
@article{ashenden-16-security-dialogues,
author = {Ashenden, Debi and Lawrence, Darren},
title = {{Security Dialogues: Building Better Relationships Between Security and Business}},
journal = {IEEE Security \& Privacy},
year = {2016},
volume = {14},
number = {3},
pages = {82--87},
month = may,
publisher = {IEEE}
}
% Approved all correct
@inproceedings{aviv-10-smudge,
author = {Aviv, Adam J. and Gibson, Katherine and Mossop, Evan and Blaze, Matt and Smith, Jonathan M.},
title = {{Smudge Attacks on Smartphone Touch Screens}},
booktitle = {USENIX Workshop on Offensive Technologies},
year = {2010},
series = {WOOT~'10},
pages = {1--7},
address = {Washington, District of Columbia, USA},
month = aug,
publisher = {USENIX}
}
% Approved all correct
@inproceedings{aviv-14-pattern-perception,
author = {Aviv, Adam J. and Fichter, Dane},
title = {{Understanding Visual Perceptions of Usability and Security of Android's Graphical Password Pattern}},
booktitle = {Annual Computer Security Applications Conference},
year = {2014},
series = {ACSAC~'14},
pages = {286--295},
address = {New Orleans, Louisiana, USA},
month = dec,
publisher = {ACM}
}
% Approved all correct
@inproceedings{aviv-15-pattern-bigger,
author = {Aviv, Adam J. and Budzitowski, Devon and Kuber, Ravi},
title = {{Is Bigger Better? Comparing User-Generated Passwords on 3x3 vs. 4x4 Grid Sizes for Android's Pattern Unlock}},
booktitle = {Annual Computer Security Applications Conference},
year = {2015},
series = {ACSAC~'15},
pages = {301--310},
address = {Los Angeles, California, USA},
month = dec,
publisher = {ACM}
}
% Approved all correct
@inproceedings{aviv-16-culture,
author = {Aviv, Adam J. and D{\"u}rmuth, Markus and Gupta, Payas},
title = {{Position Paper: Measuring the Impact of Alphabet and Culture on Graphical Passwords}},
booktitle = {Who Are You?! Adventures in Authentication Workshop},
year = {2016},
series = {WAY~'16},
pages = {},
address = {Denver, Colorado, USA},
month = jun,
publisher = {USENIX}
} % No page numbers for this workshop
% Approved all correct
@inproceedings{aviv-17-shoulder-surfing-baseline,
author = {Aviv, Adam J. and Davin, John T. and Wolf, Flynn and Kuber, Ravi},
title = {{Towards Baselines for Shoulder Surfing on Mobile Authentication}},
booktitle = {Annual Conference on Computer Security Applications},
year = {2017},
series = {ACSAC~'17},
pages = {486--498},
address = {Orlando, Florida, USA},
month = dec,
publisher = {ACM}
}
% Approved all correct
@article{aviv-18-pattern-sok,
author = {Aviv, Adam J. and D{\"u}rmuth, Markus},
title = {{A Survey of Collection Methods and Cross-Data Set Comparison of Android Unlock Patterns}},
journal = {CoRR},
year = {2018},
volume = {abs/1811.10548},
number = {},
pages = {1--20},
month = nov
}
% Approved all correct
@inproceedings{bailey-14-glass,
author = {Bailey, Daniel and D{\"u}rmuth, Markus and Paar, Christof},
title = {{``Typing'' Passwords With Voice Recognition: How to Authenticate to Google Glass}},
booktitle = {Who Are You?! Adventures in Authentication Workshop},
year = {2014},
series = {WAY~'14},
pages = {1--2},
address = {Menlo Park, California, USA},
month = jul,
publisher = {}
} % No publisher
% Approved all correct
@inproceedings{bailey-14-financial,
author = {Bailey, Daniel V. and D{\"u}rmuth, Markus and Paar, Christof},
title = {{Statistics on Password Re-use and Adaptive Strength for Financial Accounts}},
booktitle = {Security and Cryptography for Networks},
year = {2014},
series = {SCN~'14},
pages = {218--235},
address = {Amalfi, Italy},
month = sep,
publisher = {Springer}
}
% Approved all correct
@inproceedings{bailey-23-novice-guessers,
author = {{Bailey, Daniel V. and Munyendo, Collins W. and Dyer, Hunter A. and Grant, Miles and Markert, Philipp and Aviv, Adam J.}},
title = {{``Someone Definitely Used 0000'': Strategies, Performance, and User Perception of Novice Smartphone-Unlock PIN-Guessers}},
booktitle = {European Symposium on Usable Security},
year = {2023},
series = {EuroUSEC~'23},
pages = {158--174},
address = {Copenhagen, Denmark},
month = oct,
publisher = {ACM}
}
% Approved all correct
@misc{baines-21-princeton-radboud-study,
author = {Baines, Jon},
title = {{Data Ethics Concerns Halt Academic Study into Subject Access Requests}},
note = {\url{https://www.mishcon.com/news/data-ethics-concerns-halt-academic-study-into-subject-access-requests}, as of \today},
month = dec,
year = {2021}
}
% Approved all correct
@inproceedings{balash-22-third-party-access,
author = {Balash, David G. and Wu, Xiaoyuan and Grant, Miles and Reyes, Irwin and Aviv, Adam J.},
title = {{Security and Privacy Perceptions of Third-Party Application Access for Google Accounts}},
booktitle = {USENIX Security Symposium},
year = {2022},
series = {SSYM~'22},
pages = {3397--3414},
address = {Boston, Massachusetts, USA},
month = aug,
publisher = {USENIX}
}
% Approved all correct
@misc{baraniuk-15-ashley-suicides,
author = {Baraniuk, Chris},
title = {{Ashley Madison: 'Suicides' over Website Hack}},
note = {\url{https://www.bbc.com/news/technology-34044506}, as of \today},
month = aug,
year = {2015}
}
% Approved all correct
@inproceedings{barbosa-21-webauthn-proof,
author = {Barbosa, Manuel and Boldyreva, Alexandra and Chen, Shan and Warinschi, Bogdan},
title = {{Provable Security Analysis of FIDO2}},
booktitle = {Advances in Cryptology -- {CRYPTO}~2021},
year = {2021},
series = {CRYPTO~'21},
pages = {125--156},
address = {Virtual Conference},
month = aug,
publisher = {Springer}
}
% Approved all correct
@inproceedings{barbosa-21-who-am-i,
author = {Barbosa, Nat{\~{a}} M. and Wang, Gang and Ur, Blase and Wang, Yang},
title = {{Who Am I? A Design Probe Exploring Real-Time Transparency about Online and Offline User Profiling Underlying Targeted Ads}},
booktitle = {ACM Conference on Pervasive and Ubiquitous Computing},
year = {2021},
series = {UbiComp~'21},
pages = {88:1--88:32},
address = {Virtual Conference},
month = sep,
publisher = {ACM}
}
% Approved all correct
@inproceedings{barbosa-23-fido-impersonation,
author = {Barbosa, Manuel and Cirne, Andr\'{e} and Esqu\'{\i}vel, Lu\'{\i}s},
title = {{Rogue Key and Impersonation Attacks on FIDO2: From Theory to Practice}},
booktitle = {IEEE Conference on Availability, Reliability and Security},
year = {2023},
series = {ARES~'23},
pages = {14:1--14:11},
address = {Benevento, Italy},
month = aug,
publisher = {ACM}
}
% Approved all correct
@article{barbour-01-qual-research,
author = {Barbour, Rosaline S.},
title = {{Checklists for Improving Rigour in Qualitative Research: A Case of the Tail Wagging the Dog?}},
journal = {The BMJ},
year = {2001},
volume = {322},
number = {7294},
pages = {1115--1117},
month = may,
publisher = {British Medical Association}
}
% Approved all correct
@inproceedings{bashir-19-quantity-vs-quality,
author = {Bashir, Muhammad Ahmad and Farooq, Umar and Shahid, Maryam and Zaffar, Muhammad Fareed and Wilson, Christo},
title = {{Quantity vs. Quality: Evaluating User Interest Profiles Using Ad Preference Managers}},
booktitle = {Symposium on Network and Distributed System Security},
year = {2019},
series = {NDSS~'19},
pages = {},
address = {San Diego, California, USA},
month = feb,
publisher = {ISOC}
} % NDSS does not have page numbers
% Approved all correct
@techreport{bauer-13-warning-guidelines,
author = {Bauer, Lujo and Bravo-Lillo, Cristian and Cranor, Lorrie and Fragkaki, Elli},
title = {{Warning Design Guidelines}},
institution = {Carnegie Mellon University},
year = {2013},
type = {Technical Report},
number = {CMU-CyLab-13-002},
month = feb
}
% Approved all correct
@inproceedings{bauer-13-single-sign-on,
author = {Bauer, Lujo and Bravo-Lillo, Cristian and Fragkaki, Elli and Melicher, William},
title = {{A Comparison of Users' Perceptions of and Willingness to Use Google, Facebook, and Google+ Single-sign-on Functionality}},
booktitle = {Workshop on Digital Identity Management},
year = {2013},
series = {DIM~'13},
pages = {25--36},
address = {Berlin, Germany},
month = nov,
publisher = {ACM}
}
% Approved all correct
@inproceedings{beautement-08-budget,
author = {Beautement, Adam and Sasse, M. Angela and Wonham, Mike},
title = {{The Compliance Budget: Managing Security Behaviour in Organisations}},
booktitle = {New Security Paradigms Workshop},
year = {2008},
series = {NSPW~'08},
pages = {47--58},