-
Notifications
You must be signed in to change notification settings - Fork 0
/
tor-site.html
1687 lines (1686 loc) · 362 KB
/
tor-site.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="/index.css" />
<title>Welcome to your tor site</title>
</head>
<body>
<container>
<h1 id="real-world-onion-sites"><a href="#index">Real-World Onion Sites</a></h1>
<p>This is a list of substantial, commercial-or-social-good mainstream websites which provide onion services.</p>
<ul>
<li>no sites with an "onion-only" presence</li>
<li>no sites for products/technology with less than (arbitrary) 10,000 users</li>
<li>no nudity, exploitation, drugs, copyright infringement or sketchy-content sites</li>
<li>the editor reserves all rights to annotate or drop any or all entries as deemed fit</li>
<li>licensed: cc-by-sa</li>
<li>author/editor: alec muffett</li>
</ul>
<h2 id="legendkey-for-symbols">Legend/Key for Symbols</h2>
<p>You can find techical details and the legend/key for symbols in the <a href="#footnotes">footnotes section</a>, below.</p>
<h2 id="regarding-updates-and-suggestions">Regarding Updates and Suggestions</h2>
<ul>
<li>This file (<code>README.md</code>) is auto-generated from a spreadsheet</li>
<li>Please submit an <code>Issue</code> for consideration / desired change requests</li>
<li><strong>Do NOT submit changes NOR pull-requests for it</strong></li>
<li><strong>Re: SecureDrop</strong> - all SecureDrop entries are taken automatically from
<code>https://securedrop.org/api/v1/directory/</code> and must be amended on that site,
not this one.</li>
</ul>
<hr>
<h1 id="index">Index</h1>
<ul>
<li><a href="#blogs">Blogs</a></li>
<li><a href="#civil-society-and-community">Civil Society and Community</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#government">Government</a></li>
<li><a href="#news">News</a></li>
<li><a href="#news-bbc-world-service">News BBC World Service</a></li>
<li><a href="#news-deutsche-welle-world">News Deutsche Welle World</a></li>
<li><a href="#news-rferl-&-voa">News RFERL & VOA</a></li>
<li><a href="#search-engines">Search Engines</a></li>
<li><a href="#social-networks">Social Networks</a></li>
<li><a href="#tech-and-software">Tech and Software</a></li>
<li><a href="#web-and-internet">Web and Internet</a></li>
<li><a href="#securedrop">SecureDrop</a></li>
<li><a href="#footnotes">Footnotes</a></li>
</ul>
<hr>
<h2 id="blogs">Blogs</h2>
<h3 id="alexander-færøy"><a href="https://lxwu7pwyszfevhglxfgaukjqjdk2belosfvsl2ekzx3vrboacvewc7qd.onion/">Alexander Færøy</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://lxwu7pwyszfevhglxfgaukjqjdk2belosfvsl2ekzx3vrboacvewc7qd.onion/">https://lxwu7pwyszfevhglxfgaukjqjdk2belosfvsl2ekzx3vrboacvewc7qd.onion/</a></li>
<li>plain: <code>https://lxwu7pwyszfevhglxfgaukjqjdk2belosfvsl2ekzx3vrboacvewc7qd.onion/</code></li>
<li>proof: <a href="https://ahf.me">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:00+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="ctrl-blog"><a href="http://v65ngaoj2nyaiq2ltf4uzota254gnasarrkuj4aqndi2bb5lw6frt3ad.onion/">Ctrl blog</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://v65ngaoj2nyaiq2ltf4uzota254gnasarrkuj4aqndi2bb5lw6frt3ad.onion/">http://v65ngaoj2nyaiq2ltf4uzota254gnasarrkuj4aqndi2bb5lw6frt3ad.onion/</a></li>
<li>plain: <code>http://v65ngaoj2nyaiq2ltf4uzota254gnasarrkuj4aqndi2bb5lw6frt3ad.onion/</code></li>
<li>proof: <a href="https://www.ctrl.blog/entry/ctrlblog-onion-mirror.html">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:47+00:00">:white_check_mark:</span><span title="attempts=2 code=200 exit=0 time=2022-08-02 19:09:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:07+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:43+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="dropsafe--alec-muffett"><a href="https://amuffettdexn6r5s4lt45b6mlrgmsmo56szaaighyjurp4ccuj63zkad.onion/blog">Dropsafe | Alec Muffett</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://amuffettdexn6r5s4lt45b6mlrgmsmo56szaaighyjurp4ccuj63zkad.onion/blog">https://amuffettdexn6r5s4lt45b6mlrgmsmo56szaaighyjurp4ccuj63zkad.onion/blog</a></li>
<li>plain: <code>https://amuffettdexn6r5s4lt45b6mlrgmsmo56szaaighyjurp4ccuj63zkad.onion/blog</code></li>
<li>proof: <a href="https://alecmuffett.com/blog">link</a></li>
<li>check: <span title="attempts=6 code=903 exit=60 time=2022-08-04 14:02:48+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-04 02:02:58+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-03 22:38:24+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-03 10:39:21+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-02 19:14:48+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-02 07:12:20+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-01 15:45:56+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-01 03:45:56+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-31 12:21:05+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-31 00:20:56+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-30 20:54:41+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-30 08:55:36+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-29 17:28:54+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-29 05:30:06+00:00">:key:</span></li>
</ul>
<h3 id="kushal-das"><a href="https://kushal76uaid62oup5774umh654scnu5dwzh4u2534qxhcbi4wbab3ad.onion/">Kushal Das</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://kushal76uaid62oup5774umh654scnu5dwzh4u2534qxhcbi4wbab3ad.onion/">https://kushal76uaid62oup5774umh654scnu5dwzh4u2534qxhcbi4wbab3ad.onion/</a></li>
<li>plain: <code>https://kushal76uaid62oup5774umh654scnu5dwzh4u2534qxhcbi4wbab3ad.onion/</code></li>
<li>proof: <a href="https://kushaldas.in/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:03:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 02:04:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:39:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:40:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:15:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:13:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:47:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:47:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:22:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:22:07+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:55:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:56:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:30:05+00:00">:white_check_mark:</span><span title="attempts=6 code=910 exit=910 time=2022-07-29 05:48:12+00:00">:alarm_clock:</span></li>
</ul>
<h3 id="michael-altfield"><a href="http://michaelahgu3sqef5yz3u242nok2uczduq5oxqfkwq646tvjhdnl35id.onion/">Michael Altfield</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://michaelahgu3sqef5yz3u242nok2uczduq5oxqfkwq646tvjhdnl35id.onion/">http://michaelahgu3sqef5yz3u242nok2uczduq5oxqfkwq646tvjhdnl35id.onion/</a></li>
<li>plain: <code>http://michaelahgu3sqef5yz3u242nok2uczduq5oxqfkwq646tvjhdnl35id.onion/</code></li>
<li>proof: <a href="https://tech.michaelaltfield.net/2021/01/15/onion/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:04:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 02:04:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:39:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:41:07+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:15:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:14:12+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:47:14+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:47:11+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:22:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:22:13+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:56:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:56:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:30:14+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:49:22+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="ming-di-leom"><a href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/">Ming Di Leom</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/">https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/</a></li>
<li>plain: <code>https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/</code></li>
<li>proof: <a href="https://mdleom.com">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:21+00:00">:white_check_mark:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:21:07+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 20:55:11+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 08:56:13+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-29 17:31:19+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-29 05:30:35+00:00">:question:</span></li>
</ul>
<h3 id="nick-frichette"><a href="https://nickf43ab43xxf3yqgzy5uedsjij6h473rmbyzq6inohcnr3lohlu3yd.onion/">Nick Frichette</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://nickf43ab43xxf3yqgzy5uedsjij6h473rmbyzq6inohcnr3lohlu3yd.onion/">https://nickf43ab43xxf3yqgzy5uedsjij6h473rmbyzq6inohcnr3lohlu3yd.onion/</a></li>
<li>plain: <code>https://nickf43ab43xxf3yqgzy5uedsjij6h473rmbyzq6inohcnr3lohlu3yd.onion/</code></li>
<li>proof: <a href="https://frichetten.com">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:14+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:22:11+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:56:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:32:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:31:49+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="shens-essays"><a href="https://shen.hongio267dx4o2ofkn4ddsztu4ok2vq4euc7sxumbi7kcfd64ije62ad.onion/">Shen's Essays</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://shen.hongio267dx4o2ofkn4ddsztu4ok2vq4euc7sxumbi7kcfd64ije62ad.onion/">https://shen.hongio267dx4o2ofkn4ddsztu4ok2vq4euc7sxumbi7kcfd64ije62ad.onion/</a></li>
<li>plain: <code>https://shen.hongio267dx4o2ofkn4ddsztu4ok2vq4euc7sxumbi7kcfd64ije62ad.onion/</code></li>
<li>proof: <a href="https://shen.hong.io/security/#tor-onion-service">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:22:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:56:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:33:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:32:51+00:00">:white_check_mark:</span></li>
</ul>
<p>:arrow_up: <a href="#index">return to top index</a></p>
<hr>
<h2 id="civil-society-and-community">Civil Society and Community</h2>
<h3 id="privacy-international"><a href="https://privacy2ws3ora5p4qpzptqr32qm54gf5ifyzvo5bhl7bb254c6nbiyd.onion/">Privacy International</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://privacy2ws3ora5p4qpzptqr32qm54gf5ifyzvo5bhl7bb254c6nbiyd.onion/">https://privacy2ws3ora5p4qpzptqr32qm54gf5ifyzvo5bhl7bb254c6nbiyd.onion/</a></li>
<li>plain: <code>https://privacy2ws3ora5p4qpzptqr32qm54gf5ifyzvo5bhl7bb254c6nbiyd.onion/</code></li>
<li>proof: <a href="https://www.reddit.com/r/onions/comments/nhe04a/privacy_international_migrate_to_a_v3_onion/">link</a></li>
<li>check: <span title="attempts=6 code=903 exit=60 time=2022-08-04 14:03:21+00:00">:key:</span><span title="attempts=6 code=903 exit=35 time=2022-08-04 02:04:33+00:00">:sos:</span><span title="attempts=6 code=903 exit=60 time=2022-08-03 22:41:31+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-03 10:39:32+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-02 19:12:28+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-02 07:13:05+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-01 15:46:02+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-08-01 03:46:12+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-31 12:24:42+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-31 00:27:53+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-30 21:02:48+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-30 09:03:11+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-29 17:39:15+00:00">:key:</span><span title="attempts=6 code=903 exit=60 time=2022-07-29 05:38:41+00:00">:key:</span></li>
</ul>
<h3 id="riseup-home"><a href="http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/">Riseup Home</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/">http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/</a></li>
<li>plain: <code>http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/</code></li>
<li>proof: <a href="https://riseup.net/en/security/network-security/tor#riseups-tor-onion-services">link</a></li>
<li>check: <span title="attempts=3 code=200 exit=0 time=2022-08-04 14:04:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:18+00:00">:white_check_mark:</span><span title="attempts=2 code=200 exit=0 time=2022-08-02 07:10:20+00:00">:white_check_mark:</span><span title="attempts=2 code=200 exit=0 time=2022-08-01 15:41:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:41+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="riseup-onion-index"><a href="http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/en/security/network-security/tor#riseups-tor-onion-services">Riseup Onion Index</a></h3>
<p><em>provides shared notepad, file sharing, code hosting, and other services</em></p>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/en/security/network-security/tor#riseups-tor-onion-services">http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/en/security/network-security/tor#riseups-tor-onion-services</a></li>
<li>plain: <code>http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/en/security/network-security/tor#riseups-tor-onion-services</code></li>
<li>proof: <a href="https://riseup.net/en/security/network-security/tor#riseups-tor-onion-services">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:04:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:21+00:00">:white_check_mark:</span><span title="attempts=3 code=200 exit=0 time=2022-08-02 07:16:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:41:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:43+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="systemli-home"><a href="http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/index.html">Systemli Home</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/index.html">http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/index.html</a></li>
<li>plain: <code>http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/index.html</code></li>
<li>proof: <a href="https://www.systemli.org/en/service/onion.html">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:04:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:16:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:41:42+00:00">:white_check_mark:</span><span title="attempts=6 code=903 exit=7 time=2022-08-01 03:46:25+00:00">:question:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:59+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="systemli-onion-index"><a href="http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/service/onion.html">Systemli Onion Index</a></h3>
<p><em>provides shared notepad, spreadsheet, pastebin, and other services</em></p>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/service/onion.html">http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/service/onion.html</a></li>
<li>plain: <code>http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/service/onion.html</code></li>
<li>proof: <a href="https://www.systemli.org/en/service/onion.html">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:04:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:16:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:41:43+00:00">:white_check_mark:</span><span title="attempts=6 code=903 exit=7 time=2022-08-01 03:53:21+00:00">:question:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:01+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="wikifesad"><a href="https://hyfs2rd42ij4opqkdxzycb7dolzwjtbmmm4mbpohc57mm76u6iyurxqd.onion/">WikiFesad</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://hyfs2rd42ij4opqkdxzycb7dolzwjtbmmm4mbpohc57mm76u6iyurxqd.onion/">https://hyfs2rd42ij4opqkdxzycb7dolzwjtbmmm4mbpohc57mm76u6iyurxqd.onion/</a></li>
<li>plain: <code>https://hyfs2rd42ij4opqkdxzycb7dolzwjtbmmm4mbpohc57mm76u6iyurxqd.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=6 code=903 exit=7 time=2022-08-04 14:11:50+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-08-04 02:05:32+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-08-03 22:41:45+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-08-03 10:40:54+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-08-02 19:12:48+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-08-02 07:27:40+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-08-01 15:52:02+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-08-01 04:01:05+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 12:25:03+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:22:21+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 20:56:07+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 08:55:46+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-29 17:30:46+00:00">:question:</span><span title="attempts=6 code=903 exit=7 time=2022-07-29 05:30:17+00:00">:question:</span></li>
</ul>
<h3 id="decodedlegal"><a href="https://dlegal66uj5u2dvcbrev7vv6fjtwnd4moqu7j6jnd42rmbypv3coigyd.onion/">decoded.legal</a></h3>
<p>*english law firm; see also <a href="https://neilzone.co.uk/2022/03/upgrading-my-onion-site-to-https">https://neilzone.co.uk/2022/03/upgrading-my-onion-site-to-https</a> *</p>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://dlegal66uj5u2dvcbrev7vv6fjtwnd4moqu7j6jnd42rmbypv3coigyd.onion/">https://dlegal66uj5u2dvcbrev7vv6fjtwnd4moqu7j6jnd42rmbypv3coigyd.onion/</a></li>
<li>plain: <code>https://dlegal66uj5u2dvcbrev7vv6fjtwnd4moqu7j6jnd42rmbypv3coigyd.onion/</code></li>
<li>proof: <a href="https://solicitors.lawsociety.org.uk/office/593348/decoded-legal-limited">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:54+00:00">:white_check_mark:</span><span title="attempts=2 code=200 exit=0 time=2022-07-31 12:18:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:22:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:57:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:33:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:33:10+00:00">:white_check_mark:</span></li>
</ul>
<p>:arrow_up: <a href="#index">return to top index</a></p>
<hr>
<h2 id="education">Education</h2>
<h3 id="bbc-learning-english"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/">BBC Learning English</a></h3>
<p><em>includes resources for many languages</em></p>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:32+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-learning-english-mandarin"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/chinese">BBC Learning English: Mandarin</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/chinese">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/chinese</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/chinese</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:36+00:00">:white_check_mark:</span></li>
</ul>
<p>:arrow_up: <a href="#index">return to top index</a></p>
<hr>
<h2 id="government">Government</h2>
<h3 id="us-central-intelligence-agency"><a href="http://ciadotgov4sjwlzihbbgxnqg3xiyrg7so2r2o3lt5wz5ypk4sxyjstad.onion/index.html">US Central Intelligence Agency</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://ciadotgov4sjwlzihbbgxnqg3xiyrg7so2r2o3lt5wz5ypk4sxyjstad.onion/index.html">http://ciadotgov4sjwlzihbbgxnqg3xiyrg7so2r2o3lt5wz5ypk4sxyjstad.onion/index.html</a></li>
<li>plain: <code>http://ciadotgov4sjwlzihbbgxnqg3xiyrg7so2r2o3lt5wz5ypk4sxyjstad.onion/index.html</code></li>
<li>proof: <a href="https://www.cia.gov/stories/story/cias-latest-layer-an-onion-site/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:53+00:00">:white_check_mark:</span></li>
</ul>
<p>:arrow_up: <a href="#index">return to top index</a></p>
<hr>
<h2 id="news">News</h2>
<h3 id="bbc"><a href="https://www.bbcnewsd73hkzno2ini43t4gblxvycyac5aw4gnv7t2rccijh7745uqd.onion/">BBC</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcnewsd73hkzno2ini43t4gblxvycyac5aw4gnv7t2rccijh7745uqd.onion/">https://www.bbcnewsd73hkzno2ini43t4gblxvycyac5aw4gnv7t2rccijh7745uqd.onion/</a></li>
<li>plain: <code>https://www.bbcnewsd73hkzno2ini43t4gblxvycyac5aw4gnv7t2rccijh7745uqd.onion/</code></li>
<li>proof: <a href="https://www.bbc.co.uk/news/technology-50150981">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:06+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bellingcat"><a href="http://bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">Bellingcat</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">http://bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</a></li>
<li>plain: <code>http://bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</code></li>
<li>proof: <a href="https://www.bellingcat.com/resources/2022/04/22/how-to-beat-russias-block-on-bellingcat/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:04+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:09+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bellingcat--es"><a href="http://es.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">Bellingcat | es</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://es.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">http://es.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</a></li>
<li>plain: <code>http://es.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</code></li>
<li>proof: <a href="https://www.bellingcat.com/resources/2022/04/22/how-to-beat-russias-block-on-bellingcat/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:36+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bellingcat--fr"><a href="http://fr.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">Bellingcat | fr</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://fr.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">http://fr.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</a></li>
<li>plain: <code>http://fr.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</code></li>
<li>proof: <a href="https://www.bellingcat.com/resources/2022/04/22/how-to-beat-russias-block-on-bellingcat/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:38+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bellingcat--ru"><a href="http://ru.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">Bellingcat | ru</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://ru.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">http://ru.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</a></li>
<li>plain: <code>http://ru.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</code></li>
<li>proof: <a href="https://www.bellingcat.com/resources/2022/04/22/how-to-beat-russias-block-on-bellingcat/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:41+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bellingcat--ua"><a href="http://ukraine.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">Bellingcat | ua</a></h3>
<ul>
<li>transport: :small_red_triangle: <strong>HTTP</strong></li>
<li>link: <a href="http://ukraine.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/">http://ukraine.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</a></li>
<li>plain: <code>http://ukraine.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/</code></li>
<li>proof: <a href="https://www.bellingcat.com/resources/2022/04/22/how-to-beat-russias-block-on-bellingcat/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:43+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="deutsche-welle"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/">Deutsche Welle</a></h3>
<p><em>see language index in titlebar</em></p>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:44+00:00">:white_check_mark:</span><span title="attempts=1 code=302 exit=0 time=2022-08-04 01:58:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-03 22:32:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-03 10:33:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-02 19:06:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-02 07:07:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-01 15:41:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-01 03:40:35+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-31 12:16:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:22:05+00:00">:question:</span><span title="attempts=1 code=302 exit=0 time=2022-07-30 20:49:31+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 09:06:53+00:00">:timer_clock:</span><span title="attempts=1 code=302 exit=0 time=2022-07-29 17:23:47+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-29 05:24:02+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="propublica"><a href="https://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion/">ProPublica</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion/">https://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion/</a></li>
<li>plain: <code>https://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion/</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:19+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:57:27+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:32:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:32:23+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:06:43+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:40:38+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:40:42+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:15:23+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:15:43+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:49:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 08:49:29+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:23:26+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:23:47+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="radio-free-europe--rferl"><a href="https://www.rferlo2zxgv23tct66v45s5mecftol5vod3hf4rqbipfp46fqu2q56ad.onion/">Radio Free Europe | RFERL</a></h3>
<p><em><a href="https://www.rfa.org/about/releases/mirror_websites-04172020105949.html">https://www.rfa.org/about/releases/mirror_websites-04172020105949.html</a></em></p>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.rferlo2zxgv23tct66v45s5mecftol5vod3hf4rqbipfp46fqu2q56ad.onion/">https://www.rferlo2zxgv23tct66v45s5mecftol5vod3hf4rqbipfp46fqu2q56ad.onion/</a></li>
<li>plain: <code>https://www.rferlo2zxgv23tct66v45s5mecftol5vod3hf4rqbipfp46fqu2q56ad.onion/</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:05+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="the-guardian"><a href="https://www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion/">The Guardian</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion/">https://www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion/</a></li>
<li>plain: <code>https://www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion/</code></li>
<li>proof: <a href="https://www.theguardian.com/help/insideguardian/2022/may/30/guardian-launches-tor-onion-service">link</a></li>
<li>check: <span title="attempts=3 code=302 exit=0 time=2022-08-04 14:04:01+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-04 01:59:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-03 22:32:51+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-03 10:34:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-02 19:06:40+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-02 07:07:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-01 15:40:56+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-08-01 03:41:10+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-31 12:16:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-31 00:15:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-30 20:49:57+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-30 08:49:57+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-29 17:23:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=302 exit=0 time=2022-07-29 05:24:21+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="the-intercept"><a href="https://27m3p2uv7igmj6kvd4ql3cct5h3sdwrsajovkkndeufumzyfhlfev4qd.onion">The Intercept</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://27m3p2uv7igmj6kvd4ql3cct5h3sdwrsajovkkndeufumzyfhlfev4qd.onion">https://27m3p2uv7igmj6kvd4ql3cct5h3sdwrsajovkkndeufumzyfhlfev4qd.onion</a></li>
<li>plain: <code>https://27m3p2uv7igmj6kvd4ql3cct5h3sdwrsajovkkndeufumzyfhlfev4qd.onion</code></li>
<li>proof: <a href="https://theintercept.com/2021/04/28/tor-browser-onion/">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:04:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:59:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:41:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:41:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:16:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:03+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:09+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:25:31+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="the-new-york-times"><a href="https://www.nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion/">The New York Times</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion/">https://www.nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion/</a></li>
<li>plain: <code>https://www.nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion/</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:04:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:59:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:14+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:35:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:41:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:16:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:11+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:26:39+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="voice-of-america--voa"><a href="https://www.voanews5aitmne6gs2btokcacixclgfl43cv27sirgbauyyjylwpdtqd.onion/">Voice of America | VOA</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.voanews5aitmne6gs2btokcacixclgfl43cv27sirgbauyyjylwpdtqd.onion/">https://www.voanews5aitmne6gs2btokcacixclgfl43cv27sirgbauyyjylwpdtqd.onion/</a></li>
<li>plain: <code>https://www.voanews5aitmne6gs2btokcacixclgfl43cv27sirgbauyyjylwpdtqd.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:32:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:20+00:00">:white_check_mark:</span><span title="attempts=6 code=910 exit=910 time=2022-07-31 12:32:16+00:00">:alarm_clock:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:14+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:36+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="yahoo-news"><a href="https://yahoonewsnqkxo423g7vuwr2mvkwmc5t4df5x44dfdfvmyzqgcyt3had.onion/">Yahoo News</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://yahoonewsnqkxo423g7vuwr2mvkwmc5t4df5x44dfdfvmyzqgcyt3had.onion/">https://yahoonewsnqkxo423g7vuwr2mvkwmc5t4df5x44dfdfvmyzqgcyt3had.onion/</a></li>
<li>plain: <code>https://yahoonewsnqkxo423g7vuwr2mvkwmc5t4df5x44dfdfvmyzqgcyt3had.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=404 exit=0 time=2022-08-04 13:57:30+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-08-04 01:57:41+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-08-03 22:32:25+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-08-03 10:32:27+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-08-02 19:06:29+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-08-02 07:06:50+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-08-01 15:40:35+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-08-01 03:40:25+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-07-31 12:33:35+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-07-31 00:15:24+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-07-30 20:49:40+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-07-30 08:49:55+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-07-29 17:23:41+00:00">:no_entry_sign:</span><span title="attempts=1 code=404 exit=0 time=2022-07-29 05:23:46+00:00">:no_entry_sign:</span></li>
</ul>
<p>:arrow_up: <a href="#index">return to top index</a></p>
<hr>
<h2 id="news-bbc-world-service">News BBC World Service</h2>
<h3 id="bbc-news-afaanoromoo--afaan-oromoo"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afaanoromoo">BBC News /afaanoromoo | Afaan Oromoo</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afaanoromoo">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afaanoromoo</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afaanoromoo</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:34:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:49+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-afrique--afrique"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afrique">BBC News /afrique | Afrique</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afrique">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afrique</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afrique</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:36:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:52+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-amharic--አማርኛ"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/amharic">BBC News /amharic | አማርኛ</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/amharic">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/amharic</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/amharic</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:36:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:56+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-arabic--عربي"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/arabic">BBC News /arabic | عربي</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/arabic">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/arabic</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/arabic</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:33+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-azeri--azərbaycanca"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/azeri">BBC News /azeri | Azərbaycanca</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/azeri">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/azeri</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/azeri</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:36+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-bengali--বাংলা"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/bengali">BBC News /bengali | বাংলা</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/bengali">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/bengali</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/bengali</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:39+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-burmese--မြန်မာ"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/burmese">BBC News /burmese | မြန်မာ</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/burmese">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/burmese</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/burmese</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:42+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-gahuza--gahuza"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gahuza">BBC News /gahuza | Gahuza</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gahuza">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gahuza</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gahuza</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:45+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-gujarati--ગુજરાતી"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gujarati">BBC News /gujarati | ગુજરાતી</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gujarati">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gujarati</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gujarati</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:32+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-hausa--hausa"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hausa">BBC News /hausa | Hausa</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hausa">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hausa</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hausa</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:35+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-hindi--हिंदी"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hindi">BBC News /hindi | हिंदी</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hindi">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hindi</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hindi</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:38+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-igbo--ìgbò"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/igbo">BBC News /igbo | Ìgbò</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/igbo">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/igbo</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/igbo</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:42+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-indonesia--indonesia"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/indonesia">BBC News /indonesia | Indonesia</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/indonesia">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/indonesia</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/indonesia</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:45+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-korean--코리아"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/korean">BBC News /korean | 코리아</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/korean">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/korean</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/korean</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:32+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-kyrgyz--кыргыз-кызmatы"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/kyrgyz">BBC News /kyrgyz | Кыргыз КызMATы</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/kyrgyz">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/kyrgyz</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/kyrgyz</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:35+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-marathi--मराठी"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/marathi">BBC News /marathi | मराठी</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/marathi">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/marathi</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/marathi</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:39+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-mundo--mundo"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/mundo">BBC News /mundo | Mundo</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/mundo">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/mundo</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/mundo</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:42+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-nepali--नेपाली"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/nepali">BBC News /nepali | नेपाली</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/nepali">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/nepali</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/nepali</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:45+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-pashto--پښتو"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pashto">BBC News /pashto | پښتو</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pashto">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pashto</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pashto</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:49+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-persian--فارسی"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/persian">BBC News /persian | فارسی</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/persian">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/persian</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/persian</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:52+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-pidgin--pidgin"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pidgin">BBC News /pidgin | Pidgin</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pidgin">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pidgin</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pidgin</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:55+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-portuguese--brasil"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/portuguese">BBC News /portuguese | Brasil</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/portuguese">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/portuguese</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/portuguese</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:03+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:04+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:58+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-punjabi--ਪੰਜਾਬੀ"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/punjabi">BBC News /punjabi | ਪੰਜਾਬੀ</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/punjabi">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/punjabi</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/punjabi</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:07+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:01+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-russian--русская-служба"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/russian">BBC News /russian | Русская служба</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/russian">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/russian</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/russian</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:49+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-serbiancyr--на-српском"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/cyr">BBC News /serbian/cyr | на српском</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/cyr">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/cyr</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/cyr</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:52+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-serbianlat--na-srpskom"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/lat">BBC News /serbian/lat | na srpskom</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/lat">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/lat</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/lat</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:56+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-sinhala--සිංහල"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/sinhala">BBC News /sinhala | සිංහල</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/sinhala">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/sinhala</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/sinhala</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:04+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:04+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:59+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-somali--somali"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/somali">BBC News /somali | Somali</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/somali">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/somali</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/somali</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:02+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-swahili--swahili"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/swahili">BBC News /swahili | Swahili</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/swahili">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/swahili</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/swahili</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:49+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-tamil--தமிழ்"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tamil">BBC News /tamil | தமிழ்</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tamil">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tamil</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tamil</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:06:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:15:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:51+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-telugu--తెలుగు"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/telugu">BBC News /telugu | తెలుగు</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/telugu">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/telugu</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/telugu</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:03+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:55+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-thai--ไทย"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/thai">BBC News /thai | ไทย</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/thai">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/thai</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/thai</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:09+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:07+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:49:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:58+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-tigrinya--ትግርኛ"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tigrinya">BBC News /tigrinya | ትግርኛ</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tigrinya">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tigrinya</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tigrinya</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:11+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:11+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:01+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-turkce--türkçe"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/turkce">BBC News /turkce | Türkçe</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/turkce">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/turkce</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/turkce</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:12+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:04+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:23:59+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-ukrainian--україна"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ukrainian">BBC News /ukrainian | Україна</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ukrainian">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ukrainian</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ukrainian</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:35+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:07+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:02+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-urdu--اردو"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/urdu">BBC News /urdu | اردو</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/urdu">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/urdu</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/urdu</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:14+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:11+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:05+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-uzbek--ozbek"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/uzbek">BBC News /uzbek | O'zbek</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/uzbek">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/uzbek</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/uzbek</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:01+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:14+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:08+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-vietnamese--tiếng-việt"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/vietnamese">BBC News /vietnamese | Tiếng Việt</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/vietnamese">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/vietnamese</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/vietnamese</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:04+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:11+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-yoruba--yorùbá"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/yoruba">BBC News /yoruba | Yorùbá</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/yoruba">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/yoruba</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/yoruba</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:12+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:13+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:05+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-zhongwensimp--中文"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/simp">BBC News /zhongwen/simp | 中文</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/simp">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/simp</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/simp</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:49:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:08+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news-zhongwentrad--中文"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/trad">BBC News /zhongwen/trad | 中文</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/trad">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/trad</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/trad</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:57:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:33:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:15:57+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:03+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:12+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:11+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="bbc-news--in-your-language"><a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ws/languages">BBC News | In Your Language</a></h3>
<p><em>language index</em></p>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ws/languages">https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ws/languages</a></li>
<li>plain: <code>https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ws/languages</code></li>
<li>proof: :lock: see tls/ssl certificate</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:57:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:32:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:47+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:40:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:40:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:16:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:50:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:23:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:14+00:00">:white_check_mark:</span></li>
</ul>
<p>:arrow_up: <a href="#index">return to top index</a></p>
<hr>
<h2 id="news-deutsche-welle-world">News Deutsche Welle World</h2>
<h3 id="deutsche-welle-albanian--shqip"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sq/">Deutsche Welle Albanian | Shqip</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sq/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sq/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sq/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:53+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:04+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:51+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:28+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:41:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:36+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:28+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:22:05+00:00">:question:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:10+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:07:22+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:19+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-amharic--አማርኛ"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/am/">Deutsche Welle Amharic | አማርኛ</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/am/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/am/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/am/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:45+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:32:38+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:33:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:50+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:41:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:22:05+00:00">:question:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:49:57+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:07:09+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:23:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:07+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-arabic--العربية"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ar/">Deutsche Welle Arabic | العربية</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ar/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ar/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ar/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:49+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:32:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:20+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:39+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:20+00:00">:eight_spoked_asterisk:</span><span title="attempts=2 code=301 exit=0 time=2022-07-31 00:24:23+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:49:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:25:15+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:23:57+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:11+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-bengali--বাংলা"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bn/">Deutsche Welle Bengali | বাংলা</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bn/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bn/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bn/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:04+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:25+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:57+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:45+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:23+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:43:21+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:01+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:15+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-bosnian--bhs"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bs/">Deutsche Welle Bosnian | B/H/S</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bs/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bs/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bs/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:31+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:29+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:50+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:26+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 10:01:27+00:00">:timer_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:04+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:21+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-bulgarian--български"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bg/">Deutsche Welle Bulgarian | Български</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bg/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bg/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bg/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:35+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:34+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:56+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 10:19:33+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:25+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-chinese-simplified--简"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=simp">Deutsche Welle Chinese (Simplified) | 简</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=simp">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=simp</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=simp</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:46+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:32:38+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:50+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:41:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:35+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:19+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:22:05+00:00">:question:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:49:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:07:11+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:23:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:07+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-chinese-traditional--繁"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=trad">Deutsche Welle Chinese (Traditional) | 繁</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=trad">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=trad</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=trad</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:51+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:32:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:29+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:20+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:41+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:23+00:00">:eight_spoked_asterisk:</span><span title="attempts=2 code=301 exit=0 time=2022-07-31 00:24:23+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:01+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:25:17+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:23:57+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:11+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-croatian--hrvatski"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hr/">Deutsche Welle Croatian | Hrvatski</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hr/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hr/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hr/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:55+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:47+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:26+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:32+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:43:23+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:01+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:15+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-dari--دری"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-af/">Deutsche Welle Dari | دری</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-af/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-af/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-af/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:38+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:04+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:29+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:53+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:38+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:06+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 10:01:29+00:00">:timer_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:06+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:20+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-english--english"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/en/">Deutsche Welle English | English</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/en/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/en/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/en/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:10+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:44+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 10:19:35+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:25+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-french--français"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fr/">Deutsche Welle French | Français</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fr/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fr/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fr/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:46+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:32:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:50+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:20+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:41:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:36+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:22:05+00:00">:question:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:10+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:07:12+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:23:56+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:07+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-german--deutsch"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/de/">Deutsche Welle German | Deutsch</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/de/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/de/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/de/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:52+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:04+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:29+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:42+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:25+00:00">:eight_spoked_asterisk:</span><span title="attempts=2 code=301 exit=0 time=2022-07-31 00:24:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:13+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:25:18+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:23:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:11+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-greek--ελληνικά"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/el/">Deutsche Welle Greek | Ελληνικά</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/el/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/el/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/el/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:55+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:29+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:48+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:28+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:15+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:43:24+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:16+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-hausa--hausa"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ha/">Deutsche Welle Hausa | Hausa</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ha/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ha/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ha/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:38+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:32+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:36+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:18+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 10:01:30+00:00">:timer_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:06+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:21+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-hindi--हिन्दी"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hi/">Deutsche Welle Hindi | हिन्दी</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hi/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hi/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hi/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:44+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:35+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:20+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 10:19:36+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:26+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-indonesian--indonesia"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/id/">Deutsche Welle Indonesian | Indonesia</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/id/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/id/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/id/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:49+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:01+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:55+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:41:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:22:05+00:00">:question:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:07:22+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:13+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-kiswahili--kiswahili"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sw/">Deutsche Welle Kiswahili | Kiswahili</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sw/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sw/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sw/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:31+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:26+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:43+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=2 code=301 exit=0 time=2022-07-31 00:24:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:14+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:25:28+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:18+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-macedonian--македонски"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/mk/">Deutsche Welle Macedonian | Македонски</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/mk/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/mk/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/mk/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:06+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:35+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:04+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:31+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:49+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:40+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:43:34+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:10+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:23+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-pashto--پښتو"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ps/">Deutsche Welle Pashto | پښتو</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ps/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ps/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ps/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:14+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:40+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:10+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:35+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:13+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:45+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 10:01:40+00:00">:timer_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:15+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:28+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-persian--فارسی"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-ir/">Deutsche Welle Persian | فارسی</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-ir/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-ir/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-ir/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:48+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:14+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:39+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:48+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:24+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 10:19:46+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:18+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:34+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-polish--polski"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pl/">Deutsche Welle Polish | Polski</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pl/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pl/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pl/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:55+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:25+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:41:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:36+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:32+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:23:07+00:00">:question:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:07:26+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:06+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:15+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-portuguese--português-do-brasil"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-br/">Deutsche Welle Portuguese | Português do Brasil</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-br/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-br/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-br/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:10+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:34+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:42+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:36+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:25:32+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:21+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-portuguese--português-para-áfrica"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-002/not%C3%ADcias/s-13918">Deutsche Welle Portuguese | Português para África</a></h3>
<p><em>cannot find top-page redirect</em></p>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-002/not%C3%ADcias/s-13918">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-002/not%C3%ADcias/s-13918</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-002/not%C3%ADcias/s-13918</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:58:04+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:12+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:03+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:07+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:41:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:24:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:19+00:00">:white_check_mark:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:43:38+00:00">:alarm_clock:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:12+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:26+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="deutsche-welle-romanian--română"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ro/">Deutsche Welle Romanian | Română</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ro/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ro/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ro/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:14+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:45+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:39+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:43+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:35+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 10:01:44+00:00">:timer_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:15+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:30+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-russian--русский"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ru/">Deutsche Welle Russian | Русский</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ru/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ru/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ru/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:17+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:49+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:43+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:59+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:46+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:25+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 10:19:50+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:18+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:34+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-serbian--српскиsrpski"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sr/">Deutsche Welle Serbian | Српски/Srpski</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sr/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sr/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sr/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:57:57+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:30+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:55+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:03+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:42+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:34+00:00">:eight_spoked_asterisk:</span><span title="attempts=3 code=301 exit=0 time=2022-07-31 00:24:27+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 09:14:00+00:00">:exclamation:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:24+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-spanish--español"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/es/">Deutsche Welle Spanish | Español</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/es/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/es/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/es/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:02+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:14+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:34+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:06:58+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:48+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:37+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:24:33+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:15+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 09:32:06+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:14+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:28+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-turkish--türkçe"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/tr/">Deutsche Welle Turkish | Türkçe</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/tr/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/tr/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/tr/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:07+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:08+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:39+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:41+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:41:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:41+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:12+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=903 exit=7 time=2022-07-30 09:50:12+00:00">:timer_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:18+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:24:33+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-ukrainian--українська"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/uk/">Deutsche Welle Ukrainian | Українська</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/uk/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/uk/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/uk/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:18+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:11+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:45+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:09+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:48+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:42:00+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:44+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:25+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 10:08:18+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:22+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:25:26+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<h3 id="deutsche-welle-urdu--اردو"><a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ur/">Deutsche Welle Urdu | اردو</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ur/">https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ur/</a></li>
<li>plain: <code>https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ur/</code></li>
<li>proof: <a href="https://www.dw.com/de/schutz-vor-hackern-darum-wird-tor-noch-sicherer/a-57953191">link</a></li>
<li>check: <span title="attempts=1 code=301 exit=0 time=2022-08-04 13:58:16+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-04 01:58:20+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 22:33:14+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-03 10:34:50+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 19:07:13+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-02 07:07:54+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 15:42:21+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-08-01 03:42:05+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 12:16:49+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-31 00:25:27+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-30 20:50:28+00:00">:eight_spoked_asterisk:</span><span title="attempts=6 code=910 exit=910 time=2022-07-30 10:26:24+00:00">:alarm_clock:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 17:24:26+00:00">:eight_spoked_asterisk:</span><span title="attempts=1 code=301 exit=0 time=2022-07-29 05:25:30+00:00">:eight_spoked_asterisk:</span></li>
</ul>
<p>:arrow_up: <a href="#index">return to top index</a></p>
<hr>
<h2 id="news-rferl--voa">News RFERL & VOA</h2>
<h3 id="rferl-azatliq--азатлык-хәбәрләре"><a href="https://www.azatli7ifydxlltreov6fyvzwuflgggwdgry2cnxllzs7xpoh7qjmmid.onion/">RFERL azatliq | Азатлык хәбәрләре</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.azatli7ifydxlltreov6fyvzwuflgggwdgry2cnxllzs7xpoh7qjmmid.onion/">https://www.azatli7ifydxlltreov6fyvzwuflgggwdgry2cnxllzs7xpoh7qjmmid.onion/</a></li>
<li>plain: <code>https://www.azatli7ifydxlltreov6fyvzwuflgggwdgry2cnxllzs7xpoh7qjmmid.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:59:54+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:50+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:06:59+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:02+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:42+00:00">:white_check_mark:</span><span title="attempts=6 code=903 exit=7 time=2022-07-31 00:40:11+00:00">:timer_clock:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:24+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:13+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:35+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-currenttimetv--настоящее-время"><a href="https://www.currtv242aqatxhyqfyh3mtq2ubzxz7crvj7aon3zccrnwatc5gugvqd.onion/">RFERL currenttime.tv | Настоящее Время</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.currtv242aqatxhyqfyh3mtq2ubzxz7crvj7aon3zccrnwatc5gugvqd.onion/">https://www.currtv242aqatxhyqfyh3mtq2ubzxz7crvj7aon3zccrnwatc5gugvqd.onion/</a></li>
<li>plain: <code>https://www.currtv242aqatxhyqfyh3mtq2ubzxz7crvj7aon3zccrnwatc5gugvqd.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:00:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:20+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:35:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:08:09+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:12+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:33+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:41:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:55+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-europalibera-md--europa-liberă"><a href="https://moldova.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/">RFERL europalibera md | Europa Liberă</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://moldova.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/">https://moldova.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/</a></li>
<li>plain: <code>https://moldova.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:00:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:35:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:08:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:17:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:41:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:25:34+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-europalibera-ro--europa-liberă"><a href="https://romania.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/">RFERL europalibera ro | Europa Liberă</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://romania.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/">https://romania.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/</a></li>
<li>plain: <code>https://romania.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:00:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:53+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:35:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:08:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:23+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:17:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:41:27+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:46+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:52+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:25:36+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-farda--رادیو-فردا"><a href="https://www.farda7tcb3bmdtmsmwx7wofkxxjrcw4iiizin7zzcju2oega74cnzbid.onion/">RFERL farda | رادیو فردا</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.farda7tcb3bmdtmsmwx7wofkxxjrcw4iiizin7zzcju2oega74cnzbid.onion/">https://www.farda7tcb3bmdtmsmwx7wofkxxjrcw4iiizin7zzcju2oega74cnzbid.onion/</a></li>
<li>plain: <code>https://www.farda7tcb3bmdtmsmwx7wofkxxjrcw4iiizin7zzcju2oega74cnzbid.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 14:00:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:49+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:34:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:35:44+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:08:43+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:56+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:17:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:41:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:57:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:25:08+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:26:01+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-idelreal--idel-реалии"><a href="https://www.idelraalduykh5md4f5kempsx2vhhvs53sf7td25imcsyscru7i63cyd.onion/">RFERL idelreal | Idel Реалии</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.idelraalduykh5md4f5kempsx2vhhvs53sf7td25imcsyscru7i63cyd.onion/">https://www.idelraalduykh5md4f5kempsx2vhhvs53sf7td25imcsyscru7i63cyd.onion/</a></li>
<li>plain: <code>https://www.idelraalduykh5md4f5kempsx2vhhvs53sf7td25imcsyscru7i63cyd.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:58:30+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:34:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:21+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:11+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:45+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:23:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:58:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:19+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:24:41+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-kavkazr--кавказ-реалии"><a href="https://www.kavkazrtsgiv5be4orqcben4bbr2zfikcx2zb4uceuhbu6vhlxbnbjqd.onion/">RFERL kavkazr | Кавказ Реалии</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://www.kavkazrtsgiv5be4orqcben4bbr2zfikcx2zb4uceuhbu6vhlxbnbjqd.onion/">https://www.kavkazrtsgiv5be4orqcben4bbr2zfikcx2zb4uceuhbu6vhlxbnbjqd.onion/</a></li>
<li>plain: <code>https://www.kavkazrtsgiv5be4orqcben4bbr2zfikcx2zb4uceuhbu6vhlxbnbjqd.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:58:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:31+00:00">:white_check_mark:</span><span title="attempts=2 code=200 exit=0 time=2022-08-03 10:39:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:26+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:07:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:29+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:16:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:23:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:58:32+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:24:37+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:26:08+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-krymr-ktat--qırım-aqiqat"><a href="https://ktat.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/">RFERL krymr ktat | Qırım Aqiqat</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://ktat.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/">https://ktat.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/</a></li>
<li>plain: <code>https://ktat.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:59:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:34+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:33:58+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:40:16+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:39+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:08:06+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:38+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:28+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:17:15+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:23:22+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:48+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:58:41+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:25:10+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:26:18+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-krymr-ru--крым-реалии"><a href="https://ru.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/">RFERL krymr ru | Крым Реалии</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://ru.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/">https://ru.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/</a></li>
<li>plain: <code>https://ru.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>
<li>check: <span title="attempts=1 code=200 exit=0 time=2022-08-04 13:59:05+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-04 01:58:36+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 22:34:00+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-03 10:40:18+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 19:07:42+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-02 07:08:09+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 15:42:40+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-08-01 03:42:31+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 12:17:17+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-31 00:23:25+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 20:50:51+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-30 08:58:55+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 17:25:13+00:00">:white_check_mark:</span><span title="attempts=1 code=200 exit=0 time=2022-07-29 05:26:24+00:00">:white_check_mark:</span></li>
</ul>
<h3 id="rferl-krymr-ua--крим-реалії"><a href="https://ua.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/">RFERL krymr ua | Крим Реалії</a></h3>
<ul>
<li>transport: :closed_lock_with_key: <strong>HTTPS</strong></li>
<li>link: <a href="https://ua.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/">https://ua.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/</a></li>
<li>plain: <code>https://ua.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/</code></li>
<li>proof: :crystal_ball: to be confirmed</li>