-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfakenews-fakenewschecker.txt
3065 lines (2801 loc) · 128 KB
/
fakenews-fakenewschecker.txt
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
#
# List: fakenews-fakenewschecker
# Title: List of fake news sites from fakenewschecker.com
#
# Version: 2016120701
# Homepage: https://github.com/Aloisius/fake-news/
#
# ------------------------------------------------------------------------------
# 100 Percent Fed Up
# http://www.fakenewschecker.com/fake-news-source/100-percent-fed
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# 100 Percent Fed Up publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
100percentfedup.com$
# 21st Century Wire
# http://www.fakenewschecker.com/fake-news-source/21st-century-wire
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# 21st Century Wire publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
21stcenturywire.com$
# 365 USA News
# http://www.fakenewschecker.com/fake-news-source/365-usa-news
#
# Biases: conspiratorial, political, right bias
#
# 365 USA News publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
365usanews.com$
# 70News
# http://www.fakenewschecker.com/fake-news-source/70news
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# 70News publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
70news.wordpress.com$
# ABCNews.com.co
# http://www.fakenewschecker.com/fake-news-source/abcnewscomco
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# ABCNews.com.co publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
abcnews.com.co$
# Abel Danger
# http://www.fakenewschecker.com/fake-news-source/abel-danger
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# Abel Danger publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
abeldanger.net$
# Above Top Secret
# "Government projects and facilities, including the notorious Area 51 in
# Nevada, as well as "Alien-related laws", government contractors, agencies and
# aircraft projects, such as the famous Aurora hypersonic spyplane."
# http://www.fakenewschecker.com/fake-news-source/above-top-secret
#
# Biases: conspiratorial, political
#
# Above Top Secret publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
abovetopsecret.com$
# Activist Post
# http://www.fakenewschecker.com/fake-news-source/activist-post
#
# Biases: conspiratorial, editorial, political, psuedoscience, right bias, war
activistpost.com$
# Addicting Info
# "Political knowledge and news, shared by moderates, independents, and people
# on the left. Our goal is to be a resource to discredit right-wing lies,
# myths, and talking points."
# http://www.fakenewschecker.com/fake-news-source/addicting-info
#
# Biases: left bias, political
#
# Addicting Info publishes information from a left biased position with an
# advocacy for liberal causes. The editorial content and headlines are often
# loaded with strong words to appeal to emotions and stereotypes. They may
# publish misleading reports, cite unverified sources, reference bogus reports
# and omit information that may damage their cause. The information provided
# should be regarded as speculative opinion and/or propaganda. It is among the
# most untrustworthy sources in the media.
addictinginfo.org$
# All News Pipeline
# http://www.fakenewschecker.com/fake-news-source/all-news-pipeline-0
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# All News Pipeline Up publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
allnewspipeline.com$
# America's Freedom Fighters
# "The Absolute Best Conservative News For Patriots, Written By Patriots."
# http://www.fakenewschecker.com/fake-news-source/americas-freedom-fighters
#
# Biases: conspiratorial, political, right bias
#
# America's Freedom Fighters publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
americasfreedomfighters.com$
# American Free Press
# http://www.fakenewschecker.com/fake-news-source/american-free-press
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, war
#
# American Free Presspublishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
americanfreepress.net$
# American Lookout
# http://www.fakenewschecker.com/fake-news-source/american-lookout
#
# Biases: conspiratorial, political
#
# American Lookout publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
americanlookout.com$
# American News
# http://www.fakenewschecker.com/fake-news-source/american-news
#
# Biases: conspiratorial, inciteful, psuedoscience, right bias
AmericanNews.com$
# American Overlook
# http://www.fakenewschecker.com/fake-news-source/american-overlook
#
# Biases: conspiratorial, political
#
# American Overlook publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
americanoverlook.com$
# American Patriot Daily
# http://www.fakenewschecker.com/fake-news-source/american-patriot-daily
#
# Biases: conspiratorial, political
#
# American Patriot Daily publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
americanpatriotdaily.com$
# American Renaissance
# http://www.fakenewschecker.com/fake-news-source/american-renaissance
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# American Renaissance Up publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
amren.com$
# American Reviewer
# http://www.fakenewschecker.com/fake-news-source/american-reviewer
#
# Biases: conspiratorial, political
#
# American Reviewer publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
americanreviewer.com$
# American Today
# http://www.fakenewschecker.com/fake-news-source/american-today
#
# Biases: conspiratorial, political
#
# American Today publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
truthpoliticsnews.com$
# Angry Patriot
# http://www.fakenewschecker.com/fake-news-source/angry-patriot
#
# Biases: conspiratorial, political
#
# Angry Patriot publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
www.angrypatriotmovement.com$
# Anonymous
# Not to be confused with We Are Anonymous.
# http://www.fakenewschecker.com/fake-news-source/anonymous
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# Anonymous publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
anonews.co$
# Another Day in The Empire
# http://www.fakenewschecker.com/fake-news-source/another-day-empire
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, war
#
# Another Day in The Empirepublishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
anotherdayintheempire.com$
# Anti Media
# "Why are we called Anti-Media if we are the media? The “Anti” in our name
# does not mean we are against the media, we are simply against the current
# mainstream paradigm. The current media, influenced by the industrial complex,
# is a top-down authoritarian system of distribution—the opposite of what
# Anti-Media aims to be."
# http://www.fakenewschecker.com/fake-news-source/anti-media
#
# Biases: conspiratorial, editorial, political
#
# Anti Media publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
theantimedia.org$
# Anti-War
# http://www.fakenewschecker.com/fake-news-source/anti-war
#
# Biases: conspiratorial, editorial, inciteful, political, right bias
#
# Anti-Warpublishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
www.antiwar.com$
# Assassination Science
# A site that bills itself as sticking to the "hard facts" in the assassination
# of President John F. Kennedy.
# http://www.fakenewschecker.com/fake-news-source/assassination-science
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# Assassination Science Up publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
assassinationscience.com$
# Awareness Act
# http://www.fakenewschecker.com/fake-news-source/awareness-act
#
# Biases: conspiratorial, editorial, inciteful, political, right bias
#
# Awareness Actpublishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
awarenessact.com$
# AWD News
# http://www.fakenewschecker.com/fake-news-source/awd-news
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, war
#
# AWD Newspublishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
awdnews.com$
# Bare Naked Islam
# http://www.fakenewschecker.com/fake-news-source/bare-naked-islam
#
# Biases: conspiratorial, inciteful, political, right bias, war
#
# Bare Naked Islam Up publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
www.barenakedislam.com$
# BB4SP
# http://www.fakenewschecker.com/fake-news-source/bb4sp
#
# Biases: conspiratorial, political
#
# BB4SP publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
bb4sp.com$
# Before It's News
# http://www.fakenewschecker.com/fake-news-source/before-its-news
#
# Biases: conspiratorial, editorial, political, psuedoscience, right bias
beforeitsnews.com$
# Big Hairy News
# worldnewsbureau.com redirects to this site.
# http://www.fakenewschecker.com/fake-news-source/big-hairy-news
#
# Biases: conspiratorial, political
#
# Big Hairy News publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
bighairynews.com$
# Big Nugget News
# http://www.fakenewschecker.com/fake-news-source/big-nugget-news
#
# Biases: conspiratorial, inciteful, political, right bias, war
#
# Big Nugget News Up publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
bignuggetnews.com$
# Bipartisan Report
# http://www.fakenewschecker.com/fake-news-source/bipartisan-report
#
# Biases: conspiratorial, left bias, political, psuedoscience
#
# Bipartisan Report publishes information from a left biased position with an
# advocacy for liberal causes. The editorial content and headlines are often
# loaded with strong words to appeal to emotions and stereotypes. They may
# publish misleading reports, cite unverified sources, reference bogus reports
# and omit information that may damage their cause. The information provided
# should be regarded as speculative opinion and/or propaganda. It is among the
# most untrustworthy sources in the media.
bipartisanreport.com$
# BizPac Review
# http://www.fakenewschecker.com/fake-news-source/bizpac-review
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# BizPac Review publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
bizpacreview.com$
# Black Genocide
# The New Jersey chapter of an African-American, evangelical, pro-life ministry
# in the United States.
# http://www.fakenewschecker.com/fake-news-source/black-genocide
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, war
#
# Black Genocidepublishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
blackgenocide.org$
# Blacklisted News
# http://www.fakenewschecker.com/fake-news-source/blacklisted-news
#
# Biases: conspiratorial, inciteful, political, right bias, war
#
# Blacklisted News publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
blacklistednews.com$
# Blasting News
# "Blasting News is a news publisher totally fueled and curated by the crowd.
# News are produced by delocalized contributors (Blasters). Every single news
# is fact-checked and curated by a quality team of professionals. News are
# distributed both by Blasters and by Social Blasters, a global team of digital
# influencers selected through application and interviews. All the core
# processes are managed by technology: e.g., homepages are handled by a
# patent-pending algorithm without human intervention."
# http://www.fakenewschecker.com/fake-news-source/blasting-news
#
# Biases: conspiratorial, political, psuedoscience, right bias, war
#
# Blasting News publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
blastingnews.com$
# Blue Nation Review
# http://www.fakenewschecker.com/fake-news-source/blue-nation-review
#
# Biases: conspiratorial, left bias, political
#
# Blue Nation Review publishes information from a left biased position with an
# advocacy for liberal causes. The editorial content and headlines are often
# loaded with strong words to appeal to emotions and stereotypes. They may
# publish misleading reports, cite unverified sources, reference bogus reports
# and omit information that may damage their cause. The information provided
# should be regarded as speculative opinion and/or propaganda. It is among the
# most untrustworthy sources in the media.
bluenationreview.com$
# Breitbart News
# Breitbart News is an admittedly biased news source with strong allegiances to
# the ultraconservative and alt-right points of view. Breitbart News uses
# hyperbole and sensationalism in headlines for clickbait. Often the headline
# claims are outright lies. It is best to review and double check sources when
# reading the articles on this site.
# http://www.fakenewschecker.com/fake-news-source/breitbart-news
#
# Biases: political, right bias
#
# Breitbart News publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
breitbart.com$
# Canada Free Press
# "Because without America, there is no free world."
# http://www.fakenewschecker.com/fake-news-source/canada-free-press
#
# Biases: conspiratorial, political
#
# Canada Free Press publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
canadafreepress.com$
# Center For Security Policy
# A U.S. national security think tank specializing in decision briefs and press
# releases on critical foreign policy and military defense matters. Site
# includes an extensive subject area archive dating from 1988, including
# abstracts.
# http://www.fakenewschecker.com/fake-news-source/center-security-policy
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, war
#
# Center For Security Policy publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
centerforsecuritypolicy.org$
# Channel 7 News
# http://www.fakenewschecker.com/fake-news-source/channel-7-news
#
# Biases: conspiratorial, political
#
# Channel 7 News publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
channel-7-news.com$
# Christ Wire
# "Espousing uncompromising conservative values that may shock unbelievers."
# http://www.fakenewschecker.com/fake-news-source/christ-wire
#
# Biases:
#
# Christ Wire publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
ChristWire.org$
# Christian Times Newspaper
# http://www.fakenewschecker.com/fake-news-source/christian-times-newspaper
#
# Biases: conspiratorial, political
#
# Christian Times Newspaper publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
christiantimesnewspaper.com$
# Civic Tribune
# http://www.fakenewschecker.com/fake-news-source/civic-tribune
#
# Biases: political, right bias
#
# Civic Tribune publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
CivicTribune.com$
# Clash Daily
# http://www.fakenewschecker.com/fake-news-source/clash-daily
#
# Biases: conspiratorial, political, right bias
#
# Clash Daily publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
clashdaily.com$
# Coast to Coast AM
# http://www.fakenewschecker.com/fake-news-source/coast-coast-am
#
# Biases: conspiratorial, psuedoscience, right bias
#
# Coast to Coast AM publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
coasttocoastam.com$
# Collective Evolution
# "Collective Evolution (CE) creates content that engages us all to begin
# thinking consciously about what it means to be a human on the planet. A
# grassroots organization started in 2009, CE is now a popular alternative
# media, production company and community outlet that gives others an
# opportunity to expand their everyday way of thinking. CE’s content ranges
# from writing to video to live events all with one common goal: to raise
# awareness towards how our world truly functions and encourage change that
# moves beyond it."
# http://www.fakenewschecker.com/fake-news-source/collective-evolution
#
# Biases: conspiratorial, editorial, psuedoscience, right bias
#
# Collective Evolution publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
collective-evolution.com$
# Collectively Conscious
# http://www.fakenewschecker.com/fake-news-source/collectively-conscious
#
# Biases: conspiratorial, editorial, psuedoscience
#
# Collectively Conscious publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
collectivelyconscious.net$
# Conscious Life News
# http://www.fakenewschecker.com/fake-news-source/conscious-life-news
#
# Biases: conspiratorial, editorial, left bias, psuedoscience
#
# Conscious Life News publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
consciouslifenews.com$
# Conservative Byte
# http://www.fakenewschecker.com/fake-news-source/conservative-byte
#
# Biases: conspiratorial, political, right bias
#
# Conservative Byte publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativebyte.com$
# Conservative Daily Post
# http://www.fakenewschecker.com/fake-news-source/conservative-daily-post
#
# Biases: conspiratorial, editorial, inciteful, psuedoscience, right bias, war
#
# Conservative Daily Post publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativedailypost.com$
# Conservative Firing Line
# http://www.fakenewschecker.com/fake-news-source/conservative-firing-line
#
# Biases: conspiratorial, political, right bias
#
# Conservative Firing Line publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativefiringline.com$
# Conservative Frontline
# http://www.fakenewschecker.com/fake-news-source/conservative-frontline
#
# Biases: conspiratorial, political
#
# Conservative Frontline publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativefrontline.com$
# Conservative Infidel
# http://www.fakenewschecker.com/fake-news-source/conservative-infidel
#
# Biases: conspiratorial, political
#
# Conservative Infidel publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativeinfidel.com$
# Conservative Outfitters
# http://www.fakenewschecker.com/fake-news-source/conservative-outfitters
#
# Biases: conspiratorial, editorial, political, right bias
#
# Conservative Outfitters publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativeoutfitters.com$
# Conservative Papers
# http://www.fakenewschecker.com/fake-news-source/conservative-papers
#
# Biases: conspiratorial, political
#
# Conservative Papers publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativepapers.com$
# Conservative Refocus
# "A news and opinion website focused on delivering conservative news and
# original opinion pieces on current events."
# http://www.fakenewschecker.com/fake-news-source/conservative-refocus
#
# Biases: conspiratorial, political
#
# Conservative Refocus publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativerefocus.com$
# Conservative State
# http://www.fakenewschecker.com/fake-news-source/conservative-state
#
# Biases: conspiratorial, political, right bias
#
# Conservative State publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativestate.com$
# Conservative Tribune
# http://www.fakenewschecker.com/fake-news-source/conservative-tribune
#
# Biases: conspiratorial, editorial, political, right bias
#
# Conservative Tribune publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conservativetribune.com$
# Conspiracy Planet
# http://www.fakenewschecker.com/fake-news-source/conspiracy-planet
#
# Biases: conspiratorial, editorial, inciteful, psuedoscience, right bias, war
#
# Conspiracy Planet publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
conspiracyplanet.com$
# Constitution Rising
# http://www.fakenewschecker.com/fake-news-source/constitution-rising
#
# Biases: conspiratorial, political
#
# Constitution Rising publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
rickwells.us$
# Countdown to Zero Time
# wideawakeamerica.com
# http://www.fakenewschecker.com/fake-news-source/countdown-zero-time
#
# Biases: conspiratorial, editorial, inciteful, psuedoscience, right bias
#
# Countdown to Zero Time publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
countdowntozerotime.com$
# Counter Current News
# http://www.fakenewschecker.com/fake-news-source/counter-current-news
#
# Biases: conspiratorial, political
#
# Counter Current News publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
countercurrentnews.com$
# Counter PsyOps
# http://www.fakenewschecker.com/fake-news-source/counter-psyops
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, war
#
# Counter PsyOps publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
counterpsyops.com$
# Cowger nation
# http://www.fakenewschecker.com/fake-news-source/cowger-nation
#
# Biases: conspiratorial, political, right bias
#
# Cowger Nation publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
cowgernation.com$
# Cream BMP
# http://www.fakenewschecker.com/fake-news-source/cream-bmp
#
# Biases: editorial, political, right bias, special interest
#
# Cream BMP publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
creambmp.com$
# Cronica Deportiva Politic
# http://www.fakenewschecker.com/fake-news-source/cronica-deportiva-politic
#
# Biases: conspiratorial, political
#
# Cronica Deportiva Politic publishes information that cannot be validated and
# that is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
cronicadeportiva.com/index.php/category/politic/
# Daily Buzz Live
# "Daily Buzz Live is your home for controversial, viral news. Get buzzed!"
# http://www.fakenewschecker.com/fake-news-source/daily-buzz-live
#
# Biases:
#
# Daily Buzz Live publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
dailybuzzlive.com$
# Daily Headlines
# http://www.fakenewschecker.com/fake-news-source/daily-headlines
#
# Biases: conspiratorial, editorial, inciteful, psuedoscience, right bias, war
#
# Daily Headlines publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
dailyheadlines.net$
# Daily Occupation
# http://www.fakenewschecker.com/fake-news-source/daily-occupation
#
# Biases: conspiratorial, political
#
# Daily Occupation publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
dailyoccupation.com$
# Dark Politricks
# http://www.fakenewschecker.com/fake-news-source/dark-politricks
#
# Biases: conspiratorial, political
#
# Dark Politricks publishes information that cannot be validated and that may
# be anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
darkpolitricks.com$
# Darkmoon
# http://www.fakenewschecker.com/fake-news-source/darkmoon
#
# Biases: conspiratorial, editorial, inciteful, political, right bias
#
# Darkmoon publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
darkmoon.me$
# David Duke.com
# http://www.fakenewschecker.com/fake-news-source/david-dukecom
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, special interest
#
# David Duke.com publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
davidduke.com$
# DC Clothesline
# http://www.fakenewschecker.com/fake-news-source/dc-clothesline
#
# Biases: conspiratorial, editorial, inciteful, political, right bias
#
# DC Clothesline publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
DCClothesline.com$
# DC Gazette
# http://www.fakenewschecker.com/fake-news-source/dc-gazette
#
# Biases: conspiratorial, editorial, political, right bias
#
# DC Gazette publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
DCGazette.com$
# DC Whispers
# http://www.fakenewschecker.com/fake-news-source/dc-whispers
#
# Biases: conspiratorial, political
#
# DC Whispers publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
dcwhispers.com$
# Debunking Skeptics
# http://www.fakenewschecker.com/fake-news-source/debunking-skeptics
#
# Biases: conspiratorial, editorial, political, psuedoscience, right bias
#
# Debunking Skeptics publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
debunkingskeptics.com$
# Dennis Michael Lynch
# http://www.fakenewschecker.com/fake-news-source/dennis-michael-lynch
#
# Biases: conspiratorial, editorial, inciteful, political, right bias
#
# Dennis Michael Lynch publishes information that cannot be validated and that
# is anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
dennismichaellynch.com$
# Departed
# The popularity chart below shows the stats rising for the right wing
# propaganda site at departed.com. the numbers stop on November 22 and a visit
# to their home page shows a panel of sleazy ads.
# http://www.fakenewschecker.com/fake-news-source/departed
#
# Biases: conspiratorial, political
#
# Departed publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
departed.co$
# Disclose.tv
# Disclose.tv is a fast growing multimedia and news hub dedicated to unusual
# and unexplained phenomena as well as alternative topics that may be ignored,
# denied or inandequatly covered within the mainstream media - the first and
# already largest of its kind.
# http://www.fakenewschecker.com/fake-news-source/disclosetv
#
# Biases: conspiratorial, editorial, political, psuedoscience, right bias
#
# Disclose.tv publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
disclose.tv$
# Disclosure Media
# http://www.fakenewschecker.com/fake-news-source/disclosure-media
#
# Biases: conspiratorial, editorial, inciteful, political, right bias, war
#
# Disclosure Media publishes information that cannot be validated and that is
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
disclosuremedia.net$
# Downtrend
# http://www.fakenewschecker.com/fake-news-source/downtrend
#
# Biases: conspiratorial, political
#
# Downtrend publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
downtrend.com$
# Drudge Report
# http://www.fakenewschecker.com/fake-news-source/drudge-report
#
# Biases:
#
# Drudge Report publishes information that cannot be validated and that may be
# anti scientific fact. The information provided should be regarded as
# speculative opinion or propaganda and cannot be substantiated by fact or
# evidence. It is among the most untrustworthy sources in the media.
drudgereport.com$
# Duffle Blog
# "The Duffel Blog, The American Military's Most-Trusted News Source, is
# updated daily with the latest news from the armed forces."
# http://www.fakenewschecker.com/fake-news-source/duffle-blog
#
# Biases: editorial, political, right bias, special interest
#
# Duffle Blog publishes information that cannot be validated and that is anti
# scientific fact. The information provided should be regarded as speculative
# opinion or propaganda and cannot be substantiated by fact or evidence. It is
# among the most untrustworthy sources in the media.
duffelblog.com$
# Duh Progressive
# "IT’S OVER (for now)!! ‘‘Duh Progressive’’ Surrenders, Satirical Site On Ice,
# Suspended!" But readers can still look at archived articles on the site and
# need to be aware that they are still satirical and misleading.
# http://www.fakenewschecker.com/fake-news-source/duh-progressive