-
Notifications
You must be signed in to change notification settings - Fork 38
/
meta.json
991 lines (991 loc) · 31.2 KB
/
meta.json
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
[
{
"filename": "2008 - An Improved Clock-skew Measurement Technique for Revealing Hidden Services.pdf",
"year": 2008,
"title": "An Improved Clock-skew Measurement Technique for Revealing Hidden Services",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2009 - Cache Missing For Fun and Profit.pdf",
"year": 2009,
"title": "Cache Missing For Fun and Profit",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2010 - On the Reliability of Wireless Fingerprinting using Clock Skews.pdf",
"year": 2010,
"title": "On the Reliability of Wireless Fingerprinting using Clock Skews",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2012 - Combining Mouse and Keystroke Dynamics Biometrics for Risk Based Authentication in Web Environments.pdf",
"year": 2012,
"title": "Combining Mouse and Keystroke Dynamics Biometrics for Risk Based Authentication in Web Environments",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2012 - Pixel Perfect - Fingerprinting Canvas in HTML5.pdf",
"year": 2012,
"title": "Pixel Perfect - Fingerprinting Canvas in HTML5",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2013 - Cookieless Monster - Exploring the Ecosystem of Web-based Device Fingerprinting.pdf",
"year": 2013,
"title": "Cookieless Monster - Exploring the Ecosystem of Web-based Device Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2013 - Mitigating Access-Driven Timing Channels in Clouds using StopWatch.pdf",
"year": 2013,
"title": "Mitigating Access-Driven Timing Channels in Clouds using StopWatch",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2013 - WebGL Programming Guide.pdf",
"year": 2013,
"title": "WebGL Programming Guide",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2014 - Markov Chain Fingerprinting to Classify Encrypted Traffic.pdf",
"year": 2014,
"title": "Markov Chain Fingerprinting to Classify Encrypted Traffic",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2014 - Mobile Device Identification Via Sensor Fingerprinting.pdf",
"year": 2014,
"title": "Mobile Device Identification Via Sensor Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2014 - The Web Never Forgets - Persistent Tracking Mechanisms in The Wild.pdf",
"year": 2014,
"title": "The Web Never Forgets - Persistent Tracking Mechanisms in The Wild",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2015 - Deterministically Deterring Timing Attacks in Deterland.pdf",
"year": 2015,
"title": "Deterministically Deterring Timing Attacks in Deterland",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2015 - FpGuard - Detection and Prevention of Browser Fingerprinting.pdf",
"year": 2015,
"title": "FpGuard - Detection and Prevention of Browser Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2015 - Mitigating browser fingerprint tracking.pdf",
"year": 2015,
"title": "Mitigating browser fingerprint tracking",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2015 - Network-based HTTPS Client Identification Using SSL TLS Fingerprinting.pdf",
"year": 2015,
"title": "Network-based HTTPS Client Identification Using SSL TLS Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2015 - The Clock is Still Ticking - Timing Attacks in the Modern Web.pdf",
"year": 2015,
"title": "The Clock is Still Ticking - Timing Attacks in the Modern Web",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2015 - Tick Tock - Building Browser Red Pills from Timing Side Channels.pdf",
"year": 2015,
"title": "Tick Tock - Building Browser Red Pills from Timing Side Channels",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2015 - You Are How You Query - Deriving Behavioral Fingerprints From DNS Traffic.pdf",
"year": 2015,
"title": "You Are How You Query - Deriving Behavioral Fingerprints From DNS Traffic",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - A 1-million-site Measurement and Analysis.pdf",
"year": 2016,
"title": "A 1-million-site Measurement and Analysis",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - Beauty and the Beast - Diverting Modern Web Browsers To Build Unique Browser Fingerprints.pdf",
"year": 2016,
"title": "Beauty and the Beast - Diverting Modern Web Browsers To Build Unique Browser Fingerprints",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - Browser Fingerprinting - Hraska.pdf",
"year": 2016,
"title": "Browser Fingerprinting - Hraska",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - Cloud Fingerprinting - Using Clock Skews To Determine Co-Location of Virtual Machines.pdf",
"year": 2016,
"title": "Cloud Fingerprinting - Using Clock Skews To Determine Co-Location of Virtual Machines",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - I Am Robot - (Deep) Learning to Break Semantic Image CAPTCHAs.pdf",
"year": 2016,
"title": "I Am Robot - (Deep) Learning to Break Semantic Image CAPTCHAs",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - I’m not a human - Breaking the Google reCAPTCHA.pdf",
"year": 2016,
"title": "I’m not a human - Breaking the Google reCAPTCHA",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - Picasso - Lightweight Device Class Fingerprinting For Web Clients.pdf",
"year": 2016,
"title": "Picasso - Lightweight Device Class Fingerprinting For Web Clients",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - The Security of WebRTC.pdf",
"year": 2016,
"title": "The Security of WebRTC",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - Trusted Browsers For Uncertain Times.pdf",
"year": 2016,
"title": "Trusted Browsers For Uncertain Times",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - Tunneling for Transparency A Large-Scale Analysis of End-to-End Violations in the Internet.pdf",
"year": 2016,
"title": "Tunneling for Transparency A Large-Scale Analysis of End-to-End Violations in the Internet",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2016 - Web browser fingerprinting a framework for measuring the web browser.pdf",
"year": 2016,
"title": "Web browser fingerprinting a framework for measuring the web browser",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - (Cross-)Browser Fingerprinting via OS and Hardware Level Features.pdf",
"year": 2017,
"title": "(Cross-)Browser Fingerprinting via OS and Hardware Level Features",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - DECANTeR - DEteCtion of Anomalous outbouNd HTTP TRaffic by Passive Application Fingerprinting.pdf",
"year": 2017,
"title": "DECANTeR - DEteCtion of Anomalous outbouNd HTTP TRaffic by Passive Application Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - Deterministic Browser.pdf",
"year": 2017,
"title": "Deterministic Browser",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - Fantastic Timers and Where to Find Them - High-Resolution Microarchitectural Attacks in JavaScript.pdf",
"year": 2017,
"title": "Fantastic Timers and Where to Find Them - High-Resolution Microarchitectural Attacks in JavaScript",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - FpRandom - Randomizing Core Browser Objects to Break Advanced Device Fingerprinting Techniques.pdf",
"year": 2017,
"title": "FpRandom - Randomizing Core Browser Objects to Break Advanced Device Fingerprinting Techniques",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - Most Websites Don’t Need to Vibrate - A Cost–Benefit Approach to Improving Browser Security.pdf",
"year": 2017,
"title": "Most Websites Don’t Need to Vibrate - A Cost–Benefit Approach to Improving Browser Security",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - The All Seeing Eye - Web to App Intercommunication for Session Fingerprinting in Android.pdf",
"year": 2017,
"title": "The All Seeing Eye - Web to App Intercommunication for Session Fingerprinting in Android",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - The Security Impact of HTTPS Interception.pdf",
"year": 2017,
"title": "The Security Impact of HTTPS Interception",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2017 - Tracking You through DNS Traffic - Linking User Sessions by Clustering with Dirichlet Mixture Model.pdf",
"year": 2017,
"title": "Tracking You through DNS Traffic - Linking User Sessions by Clustering with Dirichlet Mixture Model",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Browser Fingerprinting - Exploring Device Diversity to Augment Authentification and Build Client-Side Countermeasures.pdf",
"year": 2018,
"title": "Browser Fingerprinting - Exploring Device Diversity to Augment Authentification and Build Client-Side Countermeasures",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Clock Around the Clock - Time-Based Device Fingerprinting.pdf",
"year": 2018,
"title": "Clock Around the Clock - Time-Based Device Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Detecting Social Spamming on Facebook Platform.pdf",
"year": 2018,
"title": "Detecting Social Spamming on Facebook Platform",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Evaluating Server-Side Internet Proxy Detection Methods.pdf",
"year": 2018,
"title": "Evaluating Server-Side Internet Proxy Detection Methods",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Fingerprinting Mobile Browsers.pdf",
"year": 2018,
"title": "Fingerprinting Mobile Browsers",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - FP-STALKER - Tracking Browser Fingerprint Evolutions.pdf",
"year": 2018,
"title": "FP-STALKER - Tracking Browser Fingerprint Evolutions",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Hiding in The Crowd - An Analysis of the Effectiveness of Browser Fingerprinting At Large Scale.pdf",
"year": 2018,
"title": "Hiding in The Crowd - An Analysis of the Effectiveness of Browser Fingerprinting At Large Scale",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - JavaScript Zero - Real JavaScript and Zero Side-Channel Attacks.pdf",
"year": 2018,
"title": "JavaScript Zero - Real JavaScript and Zero Side-Channel Attacks",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Pride and Prejudice in Progressive Web Apps - Abusing Native App-like Features in Web Applications.pdf",
"year": 2018,
"title": "Pride and Prejudice in Progressive Web Apps - Abusing Native App-like Features in Web Applications",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Rendered Insecure - GPU Side Channel Attacks are Practical.pdf",
"year": 2018,
"title": "Rendered Insecure - GPU Side Channel Attacks are Practical",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Who Changed my Browser Settings.pdf",
"year": 2018,
"title": "Who Changed my Browser Settings",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2018 - Who Left Open the Cookie Jar - A Comprehensive Evaluation of Third-Party Cookie Policies.pdf",
"year": 2018,
"title": "Who Left Open the Cookie Jar - A Comprehensive Evaluation of Third-Party Cookie Policies",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - After You, Please - Browser Extensions Order Attacks and Countermeasures.pdf",
"year": 2019,
"title": "After You, Please - Browser Extensions Order Attacks and Countermeasures",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - An Investigation on Information Leakage of DNS over TLS.pdf",
"year": 2019,
"title": "An Investigation on Information Leakage of DNS over TLS",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Analyzing and Improving the Image Quality of StyleGAN.pdf",
"year": 2019,
"title": "Analyzing and Improving the Image Quality of StyleGAN",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Browser Fingerprinting - A Survey.pdf",
"year": 2019,
"title": "Browser Fingerprinting - A Survey",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Browser Fingerprinting - Exploring Device Diversity to Augment Authentication and Build Client-Side Countermeasures.pdf",
"year": 2019,
"title": "Browser Fingerprinting - Exploring Device Diversity to Augment Authentication and Build Client-Side Countermeasures",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Even Turing Should Sometimes Not Be Able To Tell - Mimicking Humanoid Usage Behavior for Exploratory Studies of Online Services.pdf",
"year": 2019,
"title": "Even Turing Should Sometimes Not Be Able To Tell - Mimicking Humanoid Usage Behavior for Exploratory Studies of Online Services",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Fourier Spectrum Discrepancies in Deep Network Generated Images.pdf",
"year": 2019,
"title": "Fourier Spectrum Discrepancies in Deep Network Generated Images",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - From IP ID To Device ID and KASLR Bypass.pdf",
"year": 2019,
"title": "From IP ID To Device ID and KASLR Bypass",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Hacking Google reCAPTCHA v3 using Reinforcement Learning.pdf",
"year": 2019,
"title": "Hacking Google reCAPTCHA v3 using Reinforcement Learning",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Improving the Testing Efficiency of Selenium-based Load Tests.pdf",
"year": 2019,
"title": "Improving the Testing Efficiency of Selenium-based Load Tests",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - JavaScript Template Attacks - Automatically Inferring Host Information for Targeted Exploits.pdf",
"year": 2019,
"title": "JavaScript Template Attacks - Automatically Inferring Host Information for Targeted Exploits",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Leveraging WebAssembly for Numerical JavaScript Code Virtualization.pdf",
"year": 2019,
"title": "Leveraging WebAssembly for Numerical JavaScript Code Virtualization",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Monsters in the Middleboxes - Building Tools for Detecting HTTPS Interception.pdf",
"year": 2019,
"title": "Monsters in the Middleboxes - Building Tools for Detecting HTTPS Interception",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Morelian Analysis for Browsers - Making Web Authentication Stronger with Canvas Fingerprinting.pdf",
"year": 2019,
"title": "Morelian Analysis for Browsers - Making Web Authentication Stronger with Canvas Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Passive OS Fingerprinting by DNS Traffic Analysis.pdf",
"year": 2019,
"title": "Passive OS Fingerprinting by DNS Traffic Analysis",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Preventing Browser Fingerprinting by Randomizing Canvas.pdf",
"year": 2019,
"title": "Preventing Browser Fingerprinting by Randomizing Canvas",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Rendered Private - Making GLSL Execution Uniform to Prevent WebGL-based Browser Fingerprinting.pdf",
"year": 2019,
"title": "Rendered Private - Making GLSL Execution Uniform to Prevent WebGL-based Browser Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Resident Evil - Understanding Residential IP Proxy as a Dark Service.pdf",
"year": 2019,
"title": "Resident Evil - Understanding Residential IP Proxy as a Dark Service",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - SoK - In Search of Lost Time - A Review of JavaScript Timers in Browsers.pdf",
"year": 2019,
"title": "SoK - In Search of Lost Time - A Review of JavaScript Timers in Browsers",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Talon - An Automated Framework for Cross-Device Tracking Detection.pdf",
"year": 2019,
"title": "Talon - An Automated Framework for Cross-Device Tracking Detection",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - The Generation and Use of TLS Fingerprints.pdf",
"year": 2019,
"title": "The Generation and Use of TLS Fingerprints",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - Tracking Versus Security - Investigating the Two Facets of Browser Fingerprinting.pdf",
"year": 2019,
"title": "Tracking Versus Security - Investigating the Two Facets of Browser Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2019 - VisibleV8 - In-browser Monitoring of JavaScript in the Wild.pdf",
"year": 2019,
"title": "VisibleV8 - In-browser Monitoring of JavaScript in the Wild",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - 3d Red Pill - A Guest-to-Host Escape on QEMUKVM Virtio Devices.pdf",
"year": 2020,
"title": "3d Red Pill - A Guest-to-Host Escape on QEMUKVM Virtio Devices",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Accurate TLS Fingerprinting using Destination Context and Knowledge Bases.pdf",
"year": 2020,
"title": "Accurate TLS Fingerprinting using Destination Context and Knowledge Bases",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Awakening the Web’s Sleeper Agents - Misusing Service Workers for Privacy Leakage.pdf",
"year": 2020,
"title": "Awakening the Web’s Sleeper Agents - Misusing Service Workers for Privacy Leakage",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - BeCAPTCHA-Mouse - Synthetic Mouse Trajectories and Improved Bot Detection.pdf",
"year": 2020,
"title": "BeCAPTCHA-Mouse - Synthetic Mouse Trajectories and Improved Bot Detection",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Browser Fingerprint Standardization Using Rule Based Algorithm and Multi-Class Entropy.pdf",
"year": 2020,
"title": "Browser Fingerprint Standardization Using Rule Based Algorithm and Multi-Class Entropy",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Carnus - Exploring the Privacy Threats of Browser Extension Fingerprinting.pdf",
"year": 2020,
"title": "Carnus - Exploring the Privacy Threats of Browser Extension Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Characterizing Anomalies in Malware-Generated HTTP Traffic.pdf",
"year": 2020,
"title": "Characterizing Anomalies in Malware-Generated HTTP Traffic",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Clash of the Trackers - Measuring the Evolution of the Online Tracking Ecosystem.pdf",
"year": 2020,
"title": "Clash of the Trackers - Measuring the Evolution of the Online Tracking Ecosystem",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Combining Behavioural Biometrics and Session Context Analytics to Enhance Risk Based Static Authentication in Web Applications.pdf",
"year": 2020,
"title": "Combining Behavioural Biometrics and Session Context Analytics to Enhance Risk Based Static Authentication in Web Applications",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Deobfuscation, Unpacking, And Decoding of Obfuscated Malicious JavaScript For Machine Learning Models Detection Performance Improvement.pdf",
"year": 2020,
"title": "Deobfuscation, Unpacking, And Decoding of Obfuscated Malicious JavaScript For Machine Learning Models Detection Performance Improvement",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Don’t count me out - On the relevance of IP addresses in the tracking ecosystem.pdf",
"year": 2020,
"title": "Don’t count me out - On the relevance of IP addresses in the tracking ecosystem",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - EssentialFP - Exposing the Essence of Browser Fingerprinting.pdf",
"year": 2020,
"title": "EssentialFP - Exposing the Essence of Browser Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Fingerprinting the Fingerprinters - Learning to Detect Browser Fingerprinting Behaviors.pdf",
"year": 2020,
"title": "Fingerprinting the Fingerprinters - Learning to Detect Browser Fingerprinting Behaviors",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Fingerprinting With Atomic Counters in Upcoming Web Graphics Compute APIs.pdf",
"year": 2020,
"title": "Fingerprinting With Atomic Counters in Upcoming Web Graphics Compute APIs",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - FP-Crawlers - Studying the Resilience of Browser Fingerprinting to Block Crawlers.pdf",
"year": 2020,
"title": "FP-Crawlers - Studying the Resilience of Browser Fingerprinting to Block Crawlers",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - FPSelect - Low-Cost Browser Fingerprints for Mitigating Dictionary Attacks against Web Authentication Mechanisms.pdf",
"year": 2020,
"title": "FPSelect - Low-Cost Browser Fingerprints for Mitigating Dictionary Attacks against Web Authentication Mechanisms",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Guess Who - Large-Scale Data-Centric Study of the Adequacy of Browser Fingerprints for Web Authentication.pdf",
"year": 2020,
"title": "Guess Who - Large-Scale Data-Centric Study of the Adequacy of Browser Fingerprints for Web Authentication",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Inside The Black Box - A Glimpse Of Google’s Internal Data Free-For-All.pdf",
"year": 2020,
"title": "Inside The Black Box - A Glimpse Of Google’s Internal Data Free-For-All",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Leveraging Frequency Analysis for Deep Fake Image Recognition.pdf",
"year": 2020,
"title": "Leveraging Frequency Analysis for Deep Fake Image Recognition",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Neither Denied nor Exposed Fixing WebRTC.pdf",
"year": 2020,
"title": "Neither Denied nor Exposed Fixing WebRTC",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Poking a Hole in the Wall - Censorship-Resistant Internet Communications by Parasitizing on WebRTC.pdf",
"year": 2020,
"title": "Poking a Hole in the Wall - Censorship-Resistant Internet Communications by Parasitizing on WebRTC",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Remote physical device fingerprinting.pdf",
"year": 2020,
"title": "Remote physical device fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - SenCAPTCHA - A Mobile-First CAPTCHA Using Orientation Sensors.pdf",
"year": 2020,
"title": "SenCAPTCHA - A Mobile-First CAPTCHA Using Orientation Sensors",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Taming the Shape Shifter - Detecting Anti-Fingerprinting Browsers.pdf",
"year": 2020,
"title": "Taming the Shape Shifter - Detecting Anti-Fingerprinting Browsers",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Timeless Timing Attacks - Exploiting Concurrency to Leak Secrets over Remote Connections.pdf",
"year": 2020,
"title": "Timeless Timing Attacks - Exploiting Concurrency to Leak Secrets over Remote Connections",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - TLS Fingerprinting Techniques.pdf",
"year": 2020,
"title": "TLS Fingerprinting Techniques",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Using Generative Adversarial Networks to Break and Protect Text CAPTCHAs.pdf",
"year": 2020,
"title": "Using Generative Adversarial Networks to Break and Protect Text CAPTCHAs",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Using TLS Fingerprints for OS Identification in Encrypted Traffic.pdf",
"year": 2020,
"title": "Using TLS Fingerprints for OS Identification in Encrypted Traffic",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Web Applications Security and Privacy.pdf",
"year": 2020,
"title": "Web Applications Security and Privacy",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Web Browser Privacy - What Do Browsers Say When They Phone Home.pdf",
"year": 2020,
"title": "Web Browser Privacy - What Do Browsers Say When They Phone Home",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2020 - Web Runner 2049 - Evaluating Third-Party Anti-Bot Services.pdf",
"year": 2020,
"title": "Web Runner 2049 - Evaluating Third-Party Anti-Bot Services",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - Fingerprinting in Style - Detecting Browser Extensions via Injected Style Sheets.pdf",
"year": 2021,
"title": "Fingerprinting in Style - Detecting Browser Extensions via Injected Style Sheets",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - JA3cury - A New Approach to TLS Fingerprinting by Merging Fingerprinting Methods.pdf",
"year": 2021,
"title": "JA3cury - A New Approach to TLS Fingerprinting by Merging Fingerprinting Methods",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - JARM Randomizer - Evading JARM Fingerprinting.pdf",
"year": 2021,
"title": "JARM Randomizer - Evading JARM Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - ML-CB - Machine Learning Canvas Block.pdf",
"year": 2021,
"title": "ML-CB - Machine Learning Canvas Block",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - On Reliability of JA3 Hashes for Fingerprinting Mobile Applications.pdf",
"year": 2021,
"title": "On Reliability of JA3 Hashes for Fingerprinting Mobile Applications",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - OS Fingerprinting and Tethering Detection in Mobile Networks.pdf",
"year": 2021,
"title": "OS Fingerprinting and Tethering Detection in Mobile Networks",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - Tales of FAVICONS and Caches - Persistent Tracking in Modern Browsers.pdf",
"year": 2021,
"title": "Tales of FAVICONS and Caches - Persistent Tracking in Modern Browsers",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - The CNAME of the Game - Large-scale Analysis of DNS-based Tracking Evasion.pdf",
"year": 2021,
"title": "The CNAME of the Game - Large-scale Analysis of DNS-based Tracking Evasion",
"authors": [
"Yana Dimova"
],
"topics": [
"DNS"
],
"stars": 0
},
{
"filename": "2021 - TypeNet - Deep Learning Keystrong Biometrics.pdf",
"year": 2021,
"title": "TypeNet - Deep Learning Keystrong Biometrics",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2021 - Your Phone is My Proxy - Detecting and Understanding Mobile Proxy Networks.pdf",
"year": 2021,
"title": "Your Phone is My Proxy - Detecting and Understanding Mobile Proxy Networks",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2022 - AudioContext Browser Fingerprinting.pdf",
"year": 2022,
"title": "AudioContext Browser Fingerprinting",
"authors": [
"Josef Frola"
],
"topics": [
"AudioContext",
"ML",
"Device Verification",
"Device Identification"
],
"stars": 0
},
{
"filename": "2022 - Browser-based CPU Fingerprinting.pdf",
"year": 2022,
"title": "Browser-based CPU Fingerprinting",
"authors": [
"Leon Trampert",
"Christian Rossow",
"Michael Schwarz"
],
"topics": [
"CPU Fingerprinting",
"Timing Attacks"
],
"stars": 0
},
{
"filename": "2022 - DRAWNAPART - A Device Identification Technique based on Remote GPU Fingerprinting.pdf",
"year": 2022,
"title": "DRAWNAPART - A Device Identification Technique based on Remote GPU Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2022 - Phish in Sheeps Clothing Exploring Pitfalls of Browser Fingerprinting.pdf",
"year": 2022,
"title": "Phish in Sheeps Clothing Exploring Pitfalls of Browser Fingerprinting",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2022 - SMS PVA - An Underground Service Enabling Threat Actors to Register Bulk Fake Accounts.pdf",
"year": 2022,
"title": "SMS PVA - An Underground Service Enabling Threat Actors to Register Bulk Fake Accounts",
"authors": [],
"topics": [],
"stars": 0
},
{
"filename": "2023 - A Two-Step TLS-Based Browser fingerprinting approach using combinatorial sequences.pdf",
"year": 2023,
"title": "A Two-Step TLS-Based Browser fingerprinting approach using combinatorial sequences",
"authors": [
"Bernhard Garn",
"Stefan Zauner",
"Dimitris E. Simos",
"Manuel Leithner",
"Richard Kuhn",
"Raghu Kacker"
],
"topics": [
"Fingerprint",
"TLS",
"Combinatorics"
],
"stars": 0
}
]