-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtosdr.js
More file actions
7507 lines (7507 loc) 路 203 KB
/
Copy pathtosdr.js
File metadata and controls
7507 lines (7507 loc) 路 203 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
export default {
'zoosk.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'youtube.com': {
score: 0,
all: {
bad: [
'broader than necessary',
'reduction of legal period for cause of action',
'user needs to check tosback.org',
'device fingerprinting',
],
good: ['help you deal with take-down notices'],
},
match: {
bad: [
'broader than necessary',
'reduction of legal period for cause of action',
'user needs to check tosback.org',
'device fingerprinting',
],
good: ['help you deal with take-down notices'],
},
class: 'D',
},
'yahoo.com': {
score: 0,
all: {
bad: [
'pseudonym not allowed (not because of user-to-user trust)',
'user needs to check tosback.org',
'device fingerprinting',
],
good: [
'limited for purpose of same service',
'limited for purpose of same service',
],
},
match: {
bad: [],
good: [],
},
class: false,
},
'xing.com': {
score: 0,
all: {
bad: ['pseudonym not allowed (not because of user-to-user trust)'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'xfire.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'worldofwarcraft.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'wordpress.com': {
score: 0,
all: {
bad: ['user needs to check tosback.org', 'device fingerprinting'],
good: ['limited for purpose of same service'],
},
match: {
bad: [],
good: [],
},
class: false,
},
'wordfeud.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'wikipedia.org': {
score: 0,
all: {
bad: [],
good: [
'only temporary session cookies',
'user feedback is invited',
'suspension will be fair and proportionate',
'you publish under a free license, not a bilateral one',
],
},
match: {
bad: [],
good: [],
},
class: false,
},
'whatsapp.com': {
score: 0,
all: {
bad: ['user needs to check tosback.org'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'videobb.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'vbulletin.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'twitter.com': {
score: 0,
all: {
bad: [
'little involvement',
'very broad',
'your content stays licensed',
'sets third-party cookies and/or ads',
],
good: [
'archives provided',
'tracking data deleted after 10 days and opt-out',
'you can get your data back',
],
},
match: {
bad: [],
good: [],
},
class: false,
},
'twitpic.com': {
score: 85,
all: {
bad: [
'responsible and indemnify',
'reduction of legal period for cause of action',
'they can license to third parties',
],
good: [],
},
match: {
bad: ['they can license to third parties'],
good: [],
},
class: false,
},
'tumblr.com': {
score: 0,
all: {
bad: [
'keep a license even after you close your account',
'sets third-party cookies and/or ads',
],
good: [
'they state that you own your data',
'third parties are bound by confidentiality obligations',
'archives provided',
],
},
match: {
bad: [],
good: [],
},
class: false,
},
'steampowered.com': {
score: -65,
all: {
bad: [
'defend, indemnify, hold harmless; survives termination',
'personal data is given to third parties',
'they can delete your account without prior notice and without a reason',
'class action waiver',
],
good: [
'personal data is not sold',
'pseudonyms allowed',
'you can request access and deletion of personal data',
'user is notified a month or more in advance',
'you can leave at any time',
],
},
match: {
bad: ['personal data is given to third parties'],
good: [
'personal data is not sold',
'you can request access and deletion of personal data',
],
},
class: false,
},
'store.steampowered.com': {
score: -65,
all: {
bad: [
'defend, indemnify, hold harmless; survives termination',
'personal data is given to third parties',
'they can delete your account without prior notice and without a reason',
'class action waiver',
],
good: [
'personal data is not sold',
'pseudonyms allowed',
'you can request access and deletion of personal data',
'user is notified a month or more in advance',
'you can leave at any time',
],
},
match: {
bad: ['personal data is given to third parties'],
good: [
'personal data is not sold',
'you can request access and deletion of personal data',
],
},
class: false,
},
'spotify.com': {
score: 10,
all: {
bad: [
'you grant perpetual license to anything you publish-bad-80',
'spotify may transfer and process your data to somewhere outside of your country-bad-50',
'personal data is given to third parties',
'they can delete your account without prior notice and without a reason',
'no promise to inform/notify',
'no quality guarantee',
'third parties may be involved in operating the service',
'no quality guarantee',
],
good: [
'info given about risk of publishing your info online',
'you can leave at any time',
'they educate you about the risks',
'info given about what personal data they collect',
'info given about intended use of your information',
],
},
match: {
bad: ['personal data is given to third parties'],
good: [],
},
class: false,
},
'soundcloud.com': {
score: 20,
all: {
bad: [
'responsible and indemnify',
'may sell your data in merger',
'third-party cookies, but with opt-out instructions',
],
good: [
'user is notified a month or more in advance',
'easy to read',
'you have control over licensing options',
'your personal data is used for limited purposes',
'pseudonyms allowed',
'you can leave at any time',
],
},
match: {
bad: ['may sell your data in merger'],
good: [],
},
class: 'B',
},
'sonic.net': {
score: 0,
all: {
bad: [],
good: ['logs are deleted after two weeks'],
},
match: {
bad: [],
good: [],
},
class: false,
},
'skype.com': {
score: 0,
all: {
bad: [
'user needs to check tosback.org',
'you may not express negative opinions about them',
],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'seenthis.net': {
score: 0,
all: {
bad: [],
good: [
'you can get your data back',
'you can leave at any time',
'you have control over licensing options',
],
},
match: {
bad: [],
good: [
'you can get your data back',
'you can leave at any time',
'you have control over licensing options',
],
},
class: 'A',
},
'runescape.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'rapidshare.com': {
score: -50,
all: {
bad: [],
good: [
'no third-party access without a warrant',
'they do not index or open files',
'your personal data is used for limited purposes',
'99.x% availability',
'user is notified a month or more in advance',
],
},
match: {
bad: [],
good: ['no third-party access without a warrant'],
},
class: false,
},
'quora.com': {
score: 0,
all: {
bad: ['device fingerprinting'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'phpbb.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'packagetrackr.com': {
score: 0,
all: {
bad: ['user needs to check tosback.org'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'owncube.com': {
score: -25,
all: {
bad: ['user needs to check tosback.org'],
good: ['personal data is not sold'],
},
match: {
bad: [],
good: ['personal data is not sold'],
},
class: false,
},
'olx.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'netflix.com': {
score: -20,
all: {
bad: [
'class action waiver',
'sets third-party cookies and/or ads',
'they can delete your account without prior notice and without a reason',
'no liability for unauthorized access',
'user needs to check tosback.org',
'targeted third-party advertising',
'no promise to inform/notify',
],
good: [
'easy to read',
'you can request access and deletion of personal data',
],
},
match: {
bad: ['targeted third-party advertising'],
good: ['you can request access and deletion of personal data'],
},
class: false,
},
'nabble.com': {
score: 0,
all: {
bad: ['user needs to check tosback.org'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'mint.com': {
score: 20,
all: {
bad: [
'may sell your data in merger',
'user needs to rely on tosback.org',
],
good: [],
},
match: {
bad: ['may sell your data in merger'],
good: [],
},
class: false,
},
'microsoft.com': {
score: 60,
all: {
bad: [
'class action waiver',
'tracks you on other websites',
'no promise to inform/notify',
'user needs to check tosback.org',
'your data may be stored anywhere in the world',
],
good: ['personalized ads are opt-out'],
},
match: {
bad: ['tracks you on other websites'],
good: [],
},
class: false,
},
'lastpass.com': {
score: -50,
all: {
bad: [
'they can delete your account without prior notice and without a reason',
'no quality guarantee',
'no quality guarantee',
'they become the owner of ideas you give them',
'user needs to check tosback.org',
'promotional communications are not opt-out',
'responsible and indemnify',
],
good: [
'legal documents published under reusable license',
'pseudonyms allowed',
'info given about security practices',
'only necessary logs are kept',
'only temporary session cookies',
'no third-party access without a warrant',
],
},
match: {
bad: [],
good: ['no third-party access without a warrant'],
},
class: 'B',
},
'kolabnow.com': {
score: -75,
all: {
bad: [],
good: [
'no third-party access without a warrant',
'4 weeks to review changes and possibility to negotiate-good-60',
'no tracking cookies and web analytics opt-out-good-20',
'suspension will be fair and proportionate',
'only necessary logs are kept',
'no third-party access without a warrant',
'free software; you can run your own instance',
'personal data is not sold',
],
},
match: {
bad: [],
good: [
'no third-party access without a warrant',
'personal data is not sold',
],
},
class: 'A',
},
'kolab.org': {
score: -75,
all: {
bad: [],
good: [
'no third-party access without a warrant',
'4 weeks to review changes and possibility to negotiate-good-60',
'no tracking cookies and web analytics opt-out-good-20',
'suspension will be fair and proportionate',
'only necessary logs are kept',
'no third-party access without a warrant',
'free software; you can run your own instance',
'personal data is not sold',
],
},
match: {
bad: [],
good: [
'no third-party access without a warrant',
'personal data is not sold',
],
},
class: 'A',
},
'kippt.com': {
score: 0,
all: {
bad: ['user needs to rely on tosback.org'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'jagex.com': {
score: 0,
all: {
bad: [],
good: ['user is notified a week or more in advance'],
},
match: {
bad: [],
good: [],
},
class: false,
},
'instagram.com': {
score: 0,
all: {
bad: ['class action waiver', 'very broad'],
good: ['user is notified a week or more in advance'],
},
match: {
bad: [],
good: [],
},
class: false,
},
'informe.com': {
score: 0,
all: {
bad: ['user needs to check tosback.org'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'imgur.com': {
score: 0,
all: {
bad: ['device fingerprinting'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'ifttt.com': {
score: 0,
all: {
bad: ['user needs to check tosback.org'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'identi.ca': {
score: 0,
all: {
bad: [],
good: ['you publish under a free license, not a bilateral one'],
},
match: {
bad: [],
good: [],
},
class: false,
},
'hypster.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'habbo.com': {
score: 0,
all: {
bad: [],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'gravatar.com': {
score: 0,
all: {
bad: ['broader than necessary'],
good: [],
},
match: {
bad: [],
good: [],
},
class: false,
},
'grammarly.com': {
score: 20,
all: {
bad: [
'no promise to inform/notify',
'your use is throttled',
'no pricing info given before you sign up',
'may sell your data in merger',
],
good: [],
},
match: {
bad: ['may sell your data in merger'],
good: [],
},
class: false,
},
'google.com': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.co.in': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.co.jp': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.de': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.co.uk': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.com.br': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.fr': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.ru': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],
},
class: 'C',
},
'google.it': {
score: 220,
all: {
bad: [
'they may stop providing the service at any time',
'they can use your content for all their existing and future services',
'third-party access without a warrant',
'your content stays licensed',
'tracks you on other websites',
'logs are kept forever',
'device fingerprinting',
],
good: [
'user is notified a week or more in advance',
'archives provided',
'they provide a way to export your data',
'limited for purpose across broad platform',
],
},
match: {
bad: [
'they can use your content for all their existing and future services',
'tracks you on other websites',
'logs are kept forever',
],
good: [],