-
Notifications
You must be signed in to change notification settings - Fork 1
/
digital-rights-election-edition.html
10893 lines (7176 loc) · 482 KB
/
digital-rights-election-edition.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" class="no-js">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Inter+Tight:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap"
rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="assets/css/normalize.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/png" href="assets/img/favicon.png" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Mobirise v5.9.17, mobirise.com">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="assets/images/download.svg" type="image/x-icon">
<!-- HTML Meta Tags -->
<title>Digital Rights Are Going Great! Elections Edition </title>
<meta name="description" content="Spot any digital rights violations in the wild? Report here to add in the tracker.">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://freeandfair.in/digital-rights-election-edition">
<meta property="og:type" content="website">
<meta property="og:title" content="Digital Rights Are Going Great! Elections Edition ">
<meta property="og:description"
content="Spot any digital rights violations in the wild? Report here to add in the tracker.">
<meta property="og:image"
content="https://content.internetfreedom.in/api/files/divco3ywedt9rpe/chahsho76v5vocx/free_and_fair_website_launch_1_zJfBToKTU0.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="freeandfair.in">
<meta property="twitter:url" content="https://freeandfair.in/digital-rights-election-edition">
<meta name="twitter:title" content="Digital Rights Are Going Great! Elections Edition ">
<meta name="twitter:description"
content="Spot any digital rights violations in the wild? Report here to add in the tracker.">
<meta name="twitter:image"
content="https://content.internetfreedom.in/api/files/divco3ywedt9rpe/chahsho76v5vocx/free_and_fair_website_launch_1_zJfBToKTU0.png">
<link rel="stylesheet" href="assets/web/assets/mobirise-icons2/mobirise2.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="assets/animatecss/animate.css">
<link rel="stylesheet" href="assets/dropdown/css/style.css">
<link rel="stylesheet" href="assets/theme/css/style.css">
<link rel="preload"
href="https://fonts.googleapis.com/css?family=Inter+Tight:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap"
as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Inter+Tight:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap">
</noscript>
<link rel="preload" as="style" href="assets/mobirise/css/mbr-additional2.css?v=coZOpi">
<link rel="stylesheet" href="assets/mobirise/css/mbr-additional2.css?v=coZOpi" type="text/css">
</head>
<section data-bs-version="5.1" class="menu menu2 cid-uajPODNr9V" once="menu" id="menu02-33">
<nav class="navbar navbar-dropdown navbar-fixed-top navbar-expand-lg">
<div class="container">
<div class="navbar-brand">
<span class="navbar-logo">
<a href="https://internetfreedom.in/">
<img src="assets/images/download.svg" alt="Internet Freedom Foundation" style="height: 3rem;">
</a>
</span>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbarSupportedContent" data-bs-target="#navbarSupportedContent" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown" data-app-modern-menu="true">
<li class="nav-item dropdown">
<a class="nav-link link text-black text-primary dropdown-toggle show display-4" href="index.html#header15-1y" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside" aria-expanded="true">Manifestos and Rights</a><div class="dropdown-menu show" aria-labelledby="dropdown-805" data-bs-popper="none">
<a class="text-black text-primary show dropdown-item display-4" href="index.html#about">IFF's Digital Rights Manifesto</a>
<a class="text-black text-primary show dropdown-item display-4" href="manifesto-analysis.html#manifesto-analysis">What are you voting for? </a>
<a class="text-black text-primary show dropdown-item display-4" href="critical-analysis.html">Critical analysis of party manifestos</a></div>
</li>
<li class="nav-item dropdown">
<a class="nav-link link text-black text-primary dropdown-toggle show display-4" href="index.html#header15-1y" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside" aria-expanded="true">Stakeholder Engagements</a><div class="dropdown-menu show" aria-labelledby="dropdown-805" data-bs-popper="none"><a class="text-black text-primary dropdown-item display-4" href="index.html#parties-candidates" aria-expanded="false">Political parties and candidates</a><a class="text-black text-primary show dropdown-item display-4" href="index.html#eci">ECI</a>
<a class="text-black text-primary show dropdown-item display-4" href="index.html#platforms">Platforms</a>
<a class="text-black text-primary show dropdown-item display-4" href="index.html#voters">Voters</a></div>
</li>
<li class="nav-item">
<a class="nav-link link text-black text-primary display-4" href="digital-rights-election-edition.html" aria-expanded="false">Digital Rights are going great</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link link text-black text-primary display-4" href="index.html#digital-rights-manifesto" aria-expanded="false">Press</a>
</li> -->
</ul>
<div class="navbar-buttons mbr-section-btn"><a class="btn btn-primary display-4"
href="https://internetfreedom.in/donate/" target="_blank">Donate</a></div>
</div>
</div>
</nav>
</section>
<body>
<!-- <header class="page-header">
<p>
<br><br><br><br>
<h1>Digital Rights are going great: Elections edition </h1>
<img src="https://content.internetfreedom.in/api/files/divco3ywedt9rpe/chahsho76v5vocx/free_and_fair_website_launch_1_zJfBToKTU0.png" alt="Internet Freedom Foundation">
</p>
<p></p>
</header> -->
<section data-bs-version="5.1" class="header13 cid-ubWAYpNsE01" id="header13-3t">
<div class="align-center container">
<div class="row justify-content-center">
<div class="col-12 col-md-6">
<br>
<br><br><br><br>
<h1>Digital Rights are going great: Elections edition </h1>
<img src="https://content.internetfreedom.in/api/files/divco3ywedt9rpe/chahsho76v5vocx/free_and_fair_website_launch_1_zJfBToKTU0.png" alt="Digital Rights are going great" title="">
</div>
</div>
</div>
</section>
<body>
<section data-bs-version="5.1" class="list1 cid-uajPOEtzmua">
<div class="timeline-filter-wrapper">
<header class="timeline-filter">
<ul>
Spot any digital rights violations in the wild?
Report here to add in the tracker.
<li>
<button class="custom-button"
onclick="window.location.href = 'https://forms.internetfreedom.in/Vh5OaAL7RrSQBE6ID0mT8Q?v=o';">
Report
</button>
</li>
</ul>
</header>
</div>
<div class="timeline-filter-wrapper">
<header class="timeline-filter">
<ul>
<li>
<input type="checkbox" name="filter-shortcut" id="all" checked />
<label for="all">All</label>
</li>
<li>
<button id="deselectAllFilters" class="custom-button">Deselect All</button>
</li>
</ul>
</header>
</div>
<!-- Render left filters -->
<div class="timeline-filter-wrapper2">
<header class="timeline-filter">
<ul>
<a>Themes: </a>
<li>
<input type="checkbox" name="filter" id="AADHAAR" checked />
<label for="AADHAAR">Aadhaar</label>
</li>
<li>
<input type="checkbox" name="filter" id="AI" checked />
<label for="AI">AI</label>
</li>
<li>
<input type="checkbox" name="filter" id="CENSORSHIP" checked />
<label for="CENSORSHIP">Censorship</label>
</li>
<li>
<input type="checkbox" name="filter" id="DATA PRIVACY" checked />
<label for="DATA PRIVACY">Data privacy</label>
</li>
<li>
<input type="checkbox" name="filter" id="DEROGATORY ADS" checked />
<label for="DEROGATORY ADS">Derogatory ads</label>
</li>
<li>
<input type="checkbox" name="filter" id="DISINFORMATION" checked />
<label for="DISINFORMATION">Disinformation</label>
</li>
<li>
<input type="checkbox" name="filter" id="SURVEILLANCE" checked />
<label for="SURVEILLANCE">Surveillance</label>
</li>
</ul>
</header>
</div>
<div class="timeline-filter-wrapper3">
<header class="timeline-filter">
<ul>
<a>Stakeholders: </a>
<!-- Render right filters -->
<li>
<input type="checkbox" name="filter" id="ECI" checked />
<label for="ECI">ECI</label>
</li>
<li>
<input type="checkbox" name="filter" id="LAW ENFORCEMENT" checked />
<label for="LAW ENFORCEMENT">Law Enforcement</label>
</li>
<li>
<input type="checkbox" name="filter" id="MEITY" checked />
<label for="MEITY">MeitY</label>
</li>
<li>
<input type="checkbox" name="filter" id="PLATFORMS" checked />
<label for="PLATFORMS">Platforms</label>
</li>
<li>
<input type="checkbox" name="filter" id="POLITICAL PARTY" checked />
<label for="POLITICAL PARTY">Political party</label>
</li>
</ul>
</header>
</div>
<article class="timeline">
<div class="timeline-entry" data-category="DISINFORMATION,POLITICAL PARTY" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-03T00:00:00">
June 3, 2024
</time>
</span>
<h2>
<a id="This Exit Poll Graphic Predicting BJP’s Win in Punjab’s Amritsar Is Fake" href="https://www.thequint.com/news/webqoof/india-today-exit-poll-graphic-bjp-win-punjab-amritsar-viral-post-fact-check">
<i class="fas fa-link"></i>
</a>
This Exit Poll Graphic Predicting BJP’s Win in Punjab’s Amritsar Is Fake
</h2>
<div class="captioned-image image-right">
<a href="https://www.thequint.com/news/webqoof/india-today-exit-poll-graphic-bjp-win-punjab-amritsar-viral-post-fact-check">
<img src="https://images.thequint.com/thequint%2F2024-06%2F1507c211-26da-4e00-8614-a156b67679c7%2FAbhishek_WQ_3___2024_06_03T155610_484.jpg?rect=0%2C0%2C1920%2C1008" alt="https://images.thequint.com/thequint%2F2024-06%2F1507c211-26da-4e00-8614-a156b67679c7%2FAbhishek_WQ_3___2024_06_03T155610_484.jpg?rect=0%2C0%2C1920%2C1008" />
</a>
<span class="caption">This Exit Poll Graphic Predicting BJP’s Win in Punjab’s Amritsar Is Fake</span>
</div>
<p>
Fact-Check | A fake graphic is being shared with a false claim stating that the BJP is projected to win in Punjab's Amritsar.
</p>
<ul>
<li>
<a href="https://www.thequint.com/news/webqoof/india-today-exit-poll-graphic-bjp-win-punjab-amritsar-viral-post-fact-check" target="_blank">Link to The Quint article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation,political party</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="AI,PLATFORMS" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-01T00:00:00">
June 1, 2024
</time>
</span>
<h2>
<a id="Hyderabad Techie Turns Into Politician To Test His AI WhatsApp Chatbot" href="https://www.boomlive.in/decode/hyderabad-techie-turns-into-politician-to-test-his-ai-whatsapp-chatbot-25496">
<i class="fas fa-link"></i>
</a>
Hyderabad Techie Turns Into Politician To Test His AI WhatsApp Chatbot
</h2>
<div class="captioned-image image-right">
<a href="https://www.boomlive.in/decode/hyderabad-techie-turns-into-politician-to-test-his-ai-whatsapp-chatbot-25496">
<img src="https://www.boomlive.in/h-upload/2024/05/30/1027595-decode-ai.webp" alt="https://www.boomlive.in/h-upload/2024/05/30/1027595-decode-ai.webp" />
</a>
<span class="caption">Hyderabad Techie Turns Into Politician To Test His AI WhatsApp Chatbot</span>
</div>
<p>
Siddharth Chakravarthy, an independent candidate in the Telangana Assembly elections, developed his own AI tool, 'Vako.AI,' for campaigning, which is now being used by Lok Sabha candidates.
</p>
<ul>
<li>
<a href="https://www.boomlive.in/decode/hyderabad-techie-turns-into-politician-to-test-his-ai-whatsapp-chatbot-25496" target="_blank">Link to Boomlive article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: ai,platforms</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="DISINFORMATION,POLITICAL PARTY" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-03T00:00:00">
June 3, 2024
</time>
</span>
<h2>
<a id="Video Of ABP News Exit Poll Predicting INDIA Alliance Win Is Altered" href="https://www.boomlive.in/fact-check/fact-check-abp-news-exit-poll-india-alliance-winning-sandeep-chaudhary-fake-news-25525">
<i class="fas fa-link"></i>
</a>
Video Of ABP News Exit Poll Predicting INDIA Alliance Win Is Altered
</h2>
<div class="captioned-image image-right">
<a href="https://www.boomlive.in/fact-check/fact-check-abp-news-exit-poll-india-alliance-winning-sandeep-chaudhary-fake-news-25525">
<img src="https://www.boomlive.in/h-upload/2024/06/03/1027819-exitpoll-03.webp" alt="https://www.boomlive.in/h-upload/2024/06/03/1027819-exitpoll-03.webp" />
</a>
<span class="caption">Video Of ABP News Exit Poll Predicting INDIA Alliance Win Is Altered</span>
</div>
<p>
BOOM found that the graphics in the viral video have been altered to falsely claim that ABP News has predicted a win for the I.N.D.I.A alliance.
</p>
<ul>
<li>
<a href="https://www.boomlive.in/fact-check/fact-check-abp-news-exit-poll-india-alliance-winning-sandeep-chaudhary-fake-news-25525" target="_blank">Link to Boomlive article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation,political party</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="DISINFORMATION,PLATFORMS" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-03T00:00:00">
June 3, 2024
</time>
</span>
<h2>
<a id="Meta, OpenAI Combat Manipulated Content Targeting Indian Elections, Sikh Groups" href="https://www.boomlive.in/news/meta-openai-combat-manipulated-content-targeting-indian-elections-sikh-groups-25524">
<i class="fas fa-link"></i>
</a>
Meta, OpenAI Combat Manipulated Content Targeting Indian Elections, Sikh Groups
</h2>
<div class="captioned-image image-right">
<a href="https://www.boomlive.in/news/meta-openai-combat-manipulated-content-targeting-indian-elections-sikh-groups-25524">
<img src="https://www.boomlive.in/h-upload/2024/06/03/1027828-meta.webp" alt="https://www.boomlive.in/h-upload/2024/06/03/1027828-meta.webp" />
</a>
<span class="caption">Meta, OpenAI Combat Manipulated Content Targeting Indian Elections, Sikh Groups</span>
</div>
<p>
While Meta removed 'Chinese-origin' pages targeting Sikh community, OpenAI disrupted 'covert influence campaign' by Israeli firm using its AI tools for 'anti-BJP content'.
</p>
<ul>
<li>
<a href="https://www.boomlive.in/news/meta-openai-combat-manipulated-content-targeting-indian-elections-sikh-groups-25524" target="_blank">Link to Boomlive article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation,platforms</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="DISINFORMATION,POLITICAL PARTY" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-05-31T00:00:00">
May 31, 2024
</time>
</span>
<h2>
<a id="[Interview] App to Track Fake News, Stringent Laws: Netas Weigh In On Tackling Misinformation" href="https://www.boomlive.in/news/app-to-tackle-fake-news-stringent-laws-netas-weigh-in-on-tackling-misinformation-this-election-season-25494">
<i class="fas fa-link"></i>
</a>
[Interview] App to Track Fake News, Stringent Laws: Netas Weigh In On Tackling Misinformation
</h2>
<div class="captioned-image image-right">
<a href="https://www.boomlive.in/news/app-to-tackle-fake-news-stringent-laws-netas-weigh-in-on-tackling-misinformation-this-election-season-25494">
<img src="https://www.boomlive.in/h-upload/2024/05/31/1027635-3dc4a4a6-0b60-448a-9c51-f29058b742dd.webp" alt="https://www.boomlive.in/h-upload/2024/05/31/1027635-3dc4a4a6-0b60-448a-9c51-f29058b742dd.webp" />
</a>
<span class="caption">[Interview] App to Track Fake News, Stringent Laws: Netas Weigh In On Tackling Misinformation</span>
</div>
<p>
In our project #FactsNeeti, BOOM asked Lok Sabha candidates from four states about misinformation.
</p>
<ul>
<li>
<a href="https://www.boomlive.in/news/app-to-tackle-fake-news-stringent-laws-netas-weigh-in-on-tackling-misinformation-this-election-season-25494" target="_blank">Link to Boomlive article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation,political party</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="POLITICAL PARTY,DISINFORMATION" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-04T00:00:00">
June 4, 2024
</time>
</span>
<h2>
<a id="No, Asaduddin Owaisi Didn't Say That He Wants PM Modi to Become PM Again" href="https://www.thequint.com/news/webqoof/asaduddin-owaisi-supporting-narendra-modi-for-prime-minister-clipped-fact-check">
<i class="fas fa-link"></i>
</a>
No, Asaduddin Owaisi Didn't Say That He Wants PM Modi to Become PM Again
</h2>
<div class="captioned-image image-right">
<a href="https://www.thequint.com/news/webqoof/asaduddin-owaisi-supporting-narendra-modi-for-prime-minister-clipped-fact-check">
<img src="https://images.thequint.com/thequint%2F2024-06%2Fd294fe61-d1f9-4eef-8d4b-e80606690075%2FRujuta_WQ_24_.jpg" alt="https://images.thequint.com/thequint%2F2024-06%2Fd294fe61-d1f9-4eef-8d4b-e80606690075%2FRujuta_WQ_24_.jpg" />
</a>
<span class="caption">No, Asaduddin Owaisi Didn't Say That He Wants PM Modi to Become PM Again</span>
</div>
<p>
Fact-check | This video is clipped, in the original video Asaduddin Owaisi says that he does not wish Narendra Modi to become the PM again. The claim is going viral amid the counting day of Lok Sabha election.
</p>
<ul>
<li>
<a href="https://www.thequint.com/news/webqoof/asaduddin-owaisi-supporting-narendra-modi-for-prime-minister-clipped-fact-check" target="_blank">Link to The Quint article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: political party,disinformation</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="POLITICAL PARTY,DISINFORMATION" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-04T00:00:00">
June 4, 2024
</time>
</span>
<h2>
<a id="Video of DK Shivakumar Shared With False Claim That He Spoke Against INDIA Bloc" href="https://www.thequint.com/news/webqoof/dk-shivakumar-did-not-accept-india-blocs-defeat-clipped-video-fact-check">
<i class="fas fa-link"></i>
</a>
Video of DK Shivakumar Shared With False Claim That He Spoke Against INDIA Bloc
</h2>
<div class="captioned-image image-right">
<a href="https://www.thequint.com/news/webqoof/dk-shivakumar-did-not-accept-india-blocs-defeat-clipped-video-fact-check">
<img src="https://images.thequint.com/thequint%2F2024-06%2F9742f2b2-109e-4c88-967b-a7eb98868767%2FRujuta_WQ_25_.jpg" alt="https://images.thequint.com/thequint%2F2024-06%2F9742f2b2-109e-4c88-967b-a7eb98868767%2FRujuta_WQ_25_.jpg" />
</a>
<span class="caption">Video of DK Shivakumar Shared With False Claim That He Spoke Against INDIA Bloc</span>
</div>
<p>
Fact-check | Clipped Video of DK Shivakumar Shared to Claim He Spoke Against INDIA Bloc. this viral video is clipped. He said that INDIA bloc might form the government after exit polls.
</p>
<ul>
<li>
<a href="https://www.thequint.com/news/webqoof/dk-shivakumar-did-not-accept-india-blocs-defeat-clipped-video-fact-check" target="_blank">Link to The Quint article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: political party,disinformation</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="PLATFORMS,AI,DISINFORMATION" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-05-31T00:00:00">
May 31, 2024
</time>
</span>
<h2>
<a id="Meta Platforms Littered With Political Deepfakes Under The Garb Of Satire" href="https://www.boomlive.in/news/meta-instagram-deepfakes-politics-satire-lok-sabha-elections-25495">
<i class="fas fa-link"></i>
</a>
Meta Platforms Littered With Political Deepfakes Under The Garb Of Satire
</h2>
<div class="captioned-image image-right">
<a href="https://www.boomlive.in/news/meta-instagram-deepfakes-politics-satire-lok-sabha-elections-25495">
<img src="https://www.boomlive.in/h-upload/2024/05/24/1027210-deepfake-images-06.webp" alt="https://www.boomlive.in/h-upload/2024/05/24/1027210-deepfake-images-06.webp" />
</a>
<span class="caption">Meta Platforms Littered With Political Deepfakes Under The Garb Of Satire</span>
</div>
<p>
Political parties have been using AI to target their opponents for months, and appear to have free rein on Facebook and Instagram
</p>
<ul>
<li>
<a href="https://www.boomlive.in/news/meta-instagram-deepfakes-politics-satire-lok-sabha-elections-25495" target="_blank">Link to Boomlive article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: platforms,ai,disinformation</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="PLATFORMS,DISINFORMATION" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-03T00:00:00">
June 3, 2024
</time>
</span>
<h2>
<a id="How Modi’s Supporters Used Social Media to Spread Disinformation During the Elections" href="https://time.com/6984947/india-election-disinformation-modi/">
<i class="fas fa-link"></i>
</a>
How Modi’s Supporters Used Social Media to Spread Disinformation During the Elections
</h2>
<div class="captioned-image image-right">
<a href="https://time.com/6984947/india-election-disinformation-modi/">
<img src="https://api.time.com/wp-content/uploads/2024/06/AP19085341917390.jpg?quality=85&w=1200&h=628&crop=1" alt="https://api.time.com/wp-content/uploads/2024/06/AP19085341917390.jpg?quality=85&w=1200&h=628&crop=1" />
</a>
<span class="caption">How Modi’s Supporters Used Social Media to Spread Disinformation During the Elections</span>
</div>
<p>
Hate speech and disinformation by pro-BJP pages was rampant on all social media platforms during India's elections.
</p>
<ul>
<li>
<a href="https://time.com/6984947/india-election-disinformation-modi/" target="_blank">Link to Time article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: platforms,disinformation</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="DISINFORMATION" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-01T00:00:00">
June 1, 2024
</time>
</span>
<h2>
<a id="How India's Fact-Checking Collective Fought Poll-Time Misinformation" href="https://www.ndtv.com/opinion/how-indias-fact-checking-collective-fought-poll-time-misinformation-5787495">
<i class="fas fa-link"></i>
</a>
How India's Fact-Checking Collective Fought Poll-Time Misinformation
</h2>
<div class="captioned-image image-right">
<a href="https://www.ndtv.com/opinion/how-indias-fact-checking-collective-fought-poll-time-misinformation-5787495">
<img src="https://c.ndtvimg.com/2024-03/3u33k2ks_voting-generic_625x300_16_March_24.jpeg?im=FaceCrop,algorithm=dnn,width=1200,height=738?ver-20240506.08" alt="https://c.ndtvimg.com/2024-03/3u33k2ks_voting-generic_625x300_16_March_24.jpeg?im=FaceCrop,algorithm=dnn,width=1200,height=738?ver-20240506.08" />
</a>
<span class="caption">How India's Fact-Checking Collective Fought Poll-Time Misinformation</span>
</div>
<p>
Nearly 50-plus organisations, comprising prominent fact-checkers and established newsrooms, big and small, from across the country, joined hands to be part of the collective.
</p>
<ul>
<li>
<a href="https://www.ndtv.com/opinion/how-indias-fact-checking-collective-fought-poll-time-misinformation-5787495" target="_blank">Link to NDTV article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="DISINFORMATION,POLITICAL PARTY" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-05-31T00:00:00">
May 31, 2024
</time>
</span>
<h2>
<a id="Fact-Check: Fake Exit Poll Graphic From TNM Predicting NDA Win in AP Goes Viral!" href="https://www.thequint.com/news/webqoof/fake-graphic-of-andhra-pradesh-exit-polls-with-tnm-logo-viral-fact-check#read-more">
<i class="fas fa-link"></i>
</a>
Fact-Check: Fake Exit Poll Graphic From TNM Predicting NDA Win in AP Goes Viral!
</h2>
<div class="captioned-image image-right">
<a href="https://www.thequint.com/news/webqoof/fake-graphic-of-andhra-pradesh-exit-polls-with-tnm-logo-viral-fact-check#read-more">
<img src="https://images.thequint.com/thequint%2F2024-05%2Ffc81d8e5-c919-481f-81ac-c09d1c97c029%2FKHUSHI___WQ_NEW___2024_05_16T121423_565.jpg?rect=0%2C72%2C1920%2C1008" alt="https://images.thequint.com/thequint%2F2024-05%2Ffc81d8e5-c919-481f-81ac-c09d1c97c029%2FKHUSHI___WQ_NEW___2024_05_16T121423_565.jpg?rect=0%2C72%2C1920%2C1008" />
</a>
<span class="caption">Fact-Check: Fake Exit Poll Graphic From TNM Predicting NDA Win in AP Goes Viral!</span>
</div>
<p>
Fact-Check: A fake graphic is being shared to claim NDA's lead in Andhra Pradesh. The graphic had The News Minute's logo on it. The news organisation clarified that the claim was false.
</p>
<ul>
<li>
<a href="https://www.thequint.com/news/webqoof/fake-graphic-of-andhra-pradesh-exit-polls-with-tnm-logo-viral-fact-check#read-more" target="_blank">Link to The Quint article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation,political party</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="DISINFORMATION,POLITICAL PARTY" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-03T00:00:00">
June 3, 2024
</time>
</span>
<h2>
<a id="Fact-check: Is Rahul Gandhi planning a vacation to Thailand after 4 June results?" href="https://www.firstpost.com/explainers/fact-check-rahul-gandhi-boarding-pass-bangkok-thailand-13778047.html">
<i class="fas fa-link"></i>
</a>
Fact-check: Is Rahul Gandhi planning a vacation to Thailand after 4 June results?
</h2>
<div class="captioned-image image-right">
<a href="https://www.firstpost.com/explainers/fact-check-rahul-gandhi-boarding-pass-bangkok-thailand-13778047.html">
<img src="https://images.firstpost.com/uploads/2024/06/rahul-gandhi-2024-06-ff256d2a394feb4a792b9a9eb4d3ceb7.jpg?im=FitAndFill=(1200,675)" alt="https://images.firstpost.com/uploads/2024/06/rahul-gandhi-2024-06-ff256d2a394feb4a792b9a9eb4d3ceb7.jpg?im=FitAndFill=(1200,675)" />
</a>
<span class="caption">Fact-check: Is Rahul Gandhi planning a vacation to Thailand after 4 June results?</span>
</div>
<p>
Union Home Minister Amit Shah said at a rally last week that Rahul Gandhi would head to Bangkok after the Lok Sabha election results are announced. PM Modi made a similar claim last week. Now, a boarding pass with the Congress leader’s name has gone viral. But it’s morphed
</p>
<ul>
<li>
<a href="https://www.firstpost.com/explainers/fact-check-rahul-gandhi-boarding-pass-bangkok-thailand-13778047.html" target="_blank">Link to First Post article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation,political party</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="DISINFORMATION,AI" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-05-31T00:00:00">
May 31, 2024
</time>
</span>
<h2>
<a id="How ‘cheapfakes’ are pushing misinformation in the Lok Sabha election" href="https://frontline.thehindu.com/news/cheapfakes-ai-deepfake-fake-news-2024-lok-sabha-general-election-fact-check/article68235641.ece">
<i class="fas fa-link"></i>
</a>
How ‘cheapfakes’ are pushing misinformation in the Lok Sabha election
</h2>
<div class="captioned-image image-right">
<a href="https://frontline.thehindu.com/news/cheapfakes-ai-deepfake-fake-news-2024-lok-sabha-general-election-fact-check/article68235641.ece">
<img src="https://fl-i.thgim.com/public/incoming/670j3c/article68235631.ece/alternates/LANDSCAPE_1200/India_Election_Misinformation_89756.jpg" alt="https://fl-i.thgim.com/public/incoming/670j3c/article68235631.ece/alternates/LANDSCAPE_1200/India_Election_Misinformation_89756.jpg" />
</a>
<span class="caption">How ‘cheapfakes’ are pushing misinformation in the Lok Sabha election</span>
</div>
<p>
Fact-checkers debunk fake videos during the 2024 general election, highlighting the need for social media platforms to tackle misinformation effectively.
</p>
<ul>
<li>
<a href="https://frontline.thehindu.com/news/cheapfakes-ai-deepfake-fake-news-2024-lok-sabha-general-election-fact-check/article68235641.ece" target="_blank">Link to Frontline article</a>
</li>
</ul>
<div class="category-text">
<br><br><br><br><br><br><br>
<a>Categories: disinformation,ai</a>
</div>
</div>
</div>
<div class="timeline-entry" data-category="PLATFORMS" aria-hidden="false">
<div class="timeline-icon green" title="vote-yea">
<i class="fas fa-vote-yea" aria-hidden="true"></i>
</div>
<div class="timeline-description">
<span class="timestamp">
<time datetime="2024-06-01T00:00:00">
June 1, 2024
</time>
</span>
<h2>
<a id="How Much Do Parties' Digital Campaigns Cost?" href="https://thewire.in/politics/election-digital-campaign-parties">
<i class="fas fa-link"></i>
</a>
How Much Do Parties' Digital Campaigns Cost?
</h2>
<div class="captioned-image image-right">
<a href="https://thewire.in/politics/election-digital-campaign-parties">
<img src="" alt="" />
</a>