-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
3029 lines (3029 loc) · 250 KB
/
Copy pathfeed.xml
File metadata and controls
3029 lines (3029 loc) · 250 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>OpenClaw Security News</title>
<link>https://github.com/joylarkin/openclaw-security-news</link>
<description>Curated security news about OpenClaw vulnerabilities, exploits, and advisories. Updated twice daily.</description>
<language>en-us</language>
<lastBuildDate>Sat, 29 Aug 2026 13:48:04 +0000</lastBuildDate>
<atom:link href="https://raw.githubusercontent.com/joylarkin/openclaw-security-news/main/feed.xml" rel="self" type="application/rss+xml"/>
<item>
<title>Security Boulevard - BSidesSF 2026 – From Assistant To Assassin: Weaponizing An OpenClaw Vulnerability To Achieve 1-Click RCE - July 20, 2026</title>
<link>https://securityboulevard.com/2026/07/bsidessf-2026-from-assistant-to-assassin-weaponizing-an-openclaw-vulnerability-to-achieve-1-click-rce/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://securityboulevard.com/2026/07/bsidessf-2026-from-assistant-to-assassin-weaponizing-an-openclaw-vulnerability-to-achieve-1-click-rce/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 20 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SCMP YoungPost - Your Voice: OpenClaw’s security risks, saving golden coin turtles and phone rules (online letters) - July 17, 2026</title>
<link>https://www.youngpostclub.com/yp/share-us/letters-editors/article/3360891/your-voice-openclaws-security-risks-saving-golden-coin-turtles-and-phone-rules-online-letters?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.youngpostclub.com/yp/share-us/letters-editors/article/3360891/your-voice-openclaws-security-risks-saving-golden-coin-turtles-and-phone-rules-online-letters?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 17 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Hong Kong Computer Emergency Response Team Coordination Centre (HKCERT) - Modern Software’s Hidden Cost: Managing Risk in the Open-Source Ecosystem - July 17, 2026</title>
<link>https://www.hkcert.org/blog/modern-software-s-hidden-cost-managing-risk-in-the-open-source-ecosystem?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.hkcert.org/blog/modern-software-s-hidden-cost-managing-risk-in-the-open-source-ecosystem?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 17 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Anthropic Alignment Science Blog - Agentic Misalignment in Summer 2026 - July 15, 2026</title>
<link>https://alignment.anthropic.com/2026/agentic-misalignment-summer-2026/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://alignment.anthropic.com/2026/agentic-misalignment-summer-2026/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 15 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechRadar Pro - Top AI tools such as OpenClaw and GitHub Copilot can be hijacked to create new massive botnets - July 15, 2026</title>
<link>https://www.msn.com/en-us/news/technology/top-ai-tools-such-as-openclaw-and-github-copilot-can-be-hijacked-to-create-new-massive-botnets/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.msn.com/en-us/news/technology/top-ai-tools-such-as-openclaw-and-github-copilot-can-be-hijacked-to-create-new-massive-botnets/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 15 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cyber Security Intelligence - AI Models Invent Fake Names Delivering Malicious Code - July 13, 2026</title>
<link>https://www.cybersecurityintelligence.com/blog/ai-models-invent-fake-names-delivering-malicious-code-9535.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cybersecurityintelligence.com/blog/ai-models-invent-fake-names-delivering-malicious-code-9535.html?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 13 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Hacker News - Researcher Details WhatsApp-to-Host Attack Chain Using Three OpenClaw Flaws - July 10, 2026</title>
<link>https://thehackernews.com/2026/07/researcher-details-whatsapp-to-host.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://thehackernews.com/2026/07/researcher-details-whatsapp-to-host.html?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 10 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Security Week - ‘HalluSquatting’ Turns AI Hallucinations Into Botnet Delivery Mechanism - July 10, 2026</title>
<link>https://www.securityweek.com/hallusquatting-turns-ai-hallucinations-into-botnet-delivery-mechanism/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.securityweek.com/hallusquatting-turns-ai-hallucinations-into-botnet-delivery-mechanism/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 10 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>arXiv - When Claws Remember but Do Not Tell: Stealthy Memory Injection in Persistent Personal Agents - July 6, 2026</title>
<link>https://arxiv.org/abs/2607.05189v1?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://arxiv.org/abs/2607.05189v1?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 06 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>PCQuest - OpenClaw skill store breach puts agent permissions under the microscope - July 1. 2026</title>
<link>https://www.pcquest.com/security-products/openclaw-skill-store-breach-puts-agent-permissions-under-the-microscope-12122415/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.pcquest.com/security-products/openclaw-skill-store-breach-puts-agent-permissions-under-the-microscope-12122415/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Open Source For U (India) - OpenClaw Skill Store Breach Raises Open Source AI Security Alarm - July 1, 2026</title>
<link>https://www.opensourceforu.com/2026/07/openclaw-skill-store-breach-raises-open-source-ai-security-alarm/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.opensourceforu.com/2026/07/openclaw-skill-store-breach-raises-open-source-ai-security-alarm/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Kaspersky - OpenClaw: risks for the users and how to mitigate them - July 1, 2026</title>
<link>https://securelist.com/openclaw-security/120484/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://securelist.com/openclaw-security/120484/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Jul 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Android Headlines - OpenClaw Launches Mobile Apps for Android and iOS, but Users Label It a Buggy Mess - June 30,2026</title>
<link>https://www.androidheadlines.com/2026/06/openclaw-ai-agent-mobile-app-launch-bugs.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.androidheadlines.com/2026/06/openclaw-ai-agent-mobile-app-launch-bugs.html?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 30 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechRound - Users Can Now Access OpenClaw Through Apple’s App Store – Are There Risks? - June 30, 2026</title>
<link>https://techround.co.uk/news/users-access-openclaw-through-apple-app-store-risks/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://techround.co.uk/news/users-access-openclaw-through-apple-app-store-risks/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 30 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Softonic - OpenClaw’s first mobile apps are now live: early users hit problems - June 30, 2026</title>
<link>https://en.softonic.com/articles/openclaws-first-mobile-apps-are-now-live-early-users-hit-problems?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://en.softonic.com/articles/openclaws-first-mobile-apps-are-now-live-early-users-hit-problems?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 30 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cyber Security News - OpenClaw Skill Marketplace Exposes AI Agents to Supply Chain Malware and Financial Fraud - June 25, 2026</title>
<link>https://cybersecuritynews.com/openclaw-skill-marketplace-exposes-ai-agents/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cybersecuritynews.com/openclaw-skill-marketplace-exposes-ai-agents/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 25 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Dark Reading - More Malicious OpenClaw Skills Threaten AI Supply Chain - June 24, 2026</title>
<link>https://www.darkreading.com/cyber-risk/malicious-openclaw-skills-clawhub-threaten-ai-supply-chain?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.darkreading.com/cyber-risk/malicious-openclaw-skills-clawhub-threaten-ai-supply-chain?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 24 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechRadar PRO - Multiple malicious OpenClaw skills found online - including two macOS infostealers - June 24, 2026</title>
<link>https://www.techradar.com/pro/security/multiple-malicious-openclaw-skills-found-online-including-two-macos-infostealers?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.techradar.com/pro/security/multiple-malicious-openclaw-skills-found-online-including-two-macos-infostealers?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 24 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Norfolk Daily News - AI Agents Still Can’t Block Prompt Injection – and Tens of Thousands of OpenClaw Setups Are Wide Open, Claw Crew Warns - June 24, 2026</title>
<link>https://norfolkdailynews.com/online_features/press_releases/ai-agents-still-can-t-block-prompt-injection-and-tens-of-thousands-of-openclaw-setups/article_8d65bdf4-c5a2-5051-877b-bb5d8c7744cb.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://norfolkdailynews.com/online_features/press_releases/ai-agents-still-can-t-block-prompt-injection-and-tens-of-thousands-of-openclaw-setups/article_8d65bdf4-c5a2-5051-877b-bb5d8c7744cb.html?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 24 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cybersecurity Insiders - OpenClaw Security Risks Exposed as 31,674 Instances Spread in 12 Days - June 23, 2026</title>
<link>https://www.cybersecurity-insiders.com/openclaw-security-risks-enterprise-ai-agent/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cybersecurity-insiders.com/openclaw-security-risks-enterprise-ai-agent/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 23 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Unit 42 Palo Alto Networks - OpenClaw’s Skill Marketplace and the Emerging AI Supply Chain Threat - June 23, 2026</title>
<link>https://unit42.paloaltonetworks.com/openclaw-ai-supply-chain-risk/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://unit42.paloaltonetworks.com/openclaw-ai-supply-chain-risk/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 23 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Help Net Security - 23 ClawHub plugins squatting official scopes expose AI registry security gaps - June 22, 2026</title>
<link>https://www.helpnetsecurity.com/2026/06/22/clawhub-code-executing-plugins-video/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.helpnetsecurity.com/2026/06/22/clawhub-code-executing-plugins-video/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cybersecurity Insiders - Why Autonomous Agents Are the Enterprise Security Problem CISOs Weren’t Ready For - June 18,2026</title>
<link>https://www.cybersecurity-insiders.com/why-autonomous-agents-are-the-enterprise-security-problem-cisos-werent-ready-for/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cybersecurity-insiders.com/why-autonomous-agents-are-the-enterprise-security-problem-cisos-werent-ready-for/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 18 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechTarget - The OpenClaw security risks every CISO needs to know - June 17, 2026</title>
<link>https://www.techtarget.com/searchsecurity/tip/The-OpenClaw-security-risks-every-CISO-needs-to-know?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.techtarget.com/searchsecurity/tip/The-OpenClaw-security-risks-every-CISO-needs-to-know?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 17 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>arXiv - Red-Teaming Agent Execution Contexts: Open-World Security Evaluation on OpenClaw - June 15, 2026</title>
<link>https://arxiv.org/pdf/2605.11047?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://arxiv.org/pdf/2605.11047?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 15 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Hacker News - New Attacks Trick OpenClaw AI Agent Into Running Code and Leaking Secrets - June 11, 2026</title>
<link>https://thehackernews.com/2026/06/new-attacks-trick-openclaw-ai-agent.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://thehackernews.com/2026/06/new-attacks-trick-openclaw-ai-agent.html?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 11 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SecurityBoulevard - Compromise OpenClaw with Prompt Injections in Message Objects - June 10, 2026</title>
<link>https://securityboulevard.com/2026/06/compromise-openclaw-with-prompt-injections-in-message-objects/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://securityboulevard.com/2026/06/compromise-openclaw-with-prompt-injections-in-message-objects/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CSO Online - Autonomous AI agents duped into leaking sensitive data in phishing test - June 10, 2026</title>
<link>https://www.csoonline.com/article/4183445/autonomous-ai-agents-duped-into-leaking-sensitive-data-in-phishing-test.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.csoonline.com/article/4183445/autonomous-ai-agents-duped-into-leaking-sensitive-data-in-phishing-test.html?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Next Web - Researchers tricked an OpenClaw AI agent into leaking AWS keys and customer data with a phishing email - June 10, 2026</title>
<link>https://thenextweb.com/news/openclaw-ai-agent-phishing-varonis-pinchy?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://thenextweb.com/news/openclaw-ai-agent-phishing-varonis-pinchy?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cybersecurity News - OpenClaw AI Agent Leaks Sensitive Credentials in New Phishing Attack Simulation - June 10, 2026</title>
<link>https://cybersecuritynews.com/openclaw-ai-agent-leaks-sensitive-credentials/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cybersecuritynews.com/openclaw-ai-agent-leaks-sensitive-credentials/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CyberPress - Researchers Expose OpenClaw AI Agent Credential Leak During Phishing Simulation - June 10, 2026</title>
<link>https://cyberpress.org/openclaw-ai-leaks-credentials/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cyberpress.org/openclaw-ai-leaks-credentials/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Imperva - Compromise OpenClaw with Prompt Injections in Message Objects - June 10, 2026</title>
<link>https://www.imperva.com/blog/compromise-openclaw-with-prompt-injections-in-message-objects/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.imperva.com/blog/compromise-openclaw-with-prompt-injections-in-message-objects/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechRadar - OpenClaw AI agent tricked into phishing attacks, with user data compromised - June 9, 2026</title>
<link>https://www.techradar.com/pro/security/openclaw-ai-agent-tricked-into-phishing-attacks-with-user-data-compromised/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.techradar.com/pro/security/openclaw-ai-agent-tricked-into-phishing-attacks-with-user-data-compromised/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 09 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>BleepingComputer - OpenClaw AI agent found falling for phishing attacks, spills user data - June 9, 2026</title>
<link>https://www.bleepingcomputer.com/news/security/openclaw-ai-agent-found-falling-for-phishing-attacks-spills-user-data/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.bleepingcomputer.com/news/security/openclaw-ai-agent-found-falling-for-phishing-attacks-spills-user-data/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 09 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Varonis - Phishing for Lobsters: How We Tricked OpenClaw into Spilling Secrets - June 9, 2026</title>
<link>https://www.varonis.com/blog/openclaw-phishing?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.varonis.com/blog/openclaw-phishing?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 09 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Let's Data Science - OpenClaw Code Reuse Exposes AI Agent Accountability Problem - June 6, 2026</title>
<link>https://letsdatascience.com/news/openclaw-code-reuse-exposes-ai-agent-accountability-problem-49cf9a0b?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://letsdatascience.com/news/openclaw-code-reuse-exposes-ai-agent-accountability-problem-49cf9a0b?utm_source=openclaw-security-news</guid>
<pubDate>Sat, 06 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>IBM Technology - OpenClaw Security Risks: 6 Dangers of Autonomous AI Agents - June 4, 2026</title>
<link>https://www.youtube.com/watch?v=7qZH3D7u-z8/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.youtube.com/watch?v=7qZH3D7u-z8/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 04 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>cybernews - Researcher easily finds five OpenClaw zero-days just as Microsoft expands its use of platform - June 4, 2026</title>
<link>https://cybernews.com/security/openclaw-zero-days-research-microsoft/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cybernews.com/security/openclaw-zero-days-research-microsoft/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 04 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>gbhackers - ClawHub, Cisco, and Vercel Skill Detection Tools Evaded by Malicious Uploads - June 4, 2026</title>
<link>https://gbhackers.com/clawhub-cisco-and-vercel-skill-detection-tools-evaded-by-malicious-uploads/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://gbhackers.com/clawhub-cisco-and-vercel-skill-detection-tools-evaded-by-malicious-uploads/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 04 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Backslash - Don't Let the Lobster Fool You: OpenClaw Security Risks Explained - June 4, 2026</title>
<link>https://www.backslash.security/blog/openclaw-security-risks-explained?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.backslash.security/blog/openclaw-security-risks-explained?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 04 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Trail of Bits - The sorry state of skill distribution - June 3, 2026</title>
<link>https://blog.trailofbits.com/2026/06/03/the-sorry-state-of-skill-distribution/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://blog.trailofbits.com/2026/06/03/the-sorry-state-of-skill-distribution/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 03 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cyber Security News - Five OpenClaw 0-Days let Attackers to Hijack Trusted AI Agent Access - June 3, 2026</title>
<link>https://cybersecuritynews.com/five-openclaw-0-days/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cybersecuritynews.com/five-openclaw-0-days/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 03 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Microsoft Command Line - OpenClaw goes enterprise with Microsoft Scout - June 2, 2026</title>
<link>https://commandline.microsoft.com/project-lobster-openclaw-personal-ai-assistant-enterprise-secure/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://commandline.microsoft.com/project-lobster-openclaw-personal-ai-assistant-enterprise-secure/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 02 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>ClawHosters - Agent 365 Blocks OpenClaw Shadow AI - June 2, 2026</title>
<link>https://clawhosters.com/blog/posts/microsoft-agent-365-openclaw-shadow-ai?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://clawhosters.com/blog/posts/microsoft-agent-365-openclaw-shadow-ai?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 02 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TrendMicro - Viral AI, Invisible Risks: What OpenClaw Reveals About Agentic Assistants - June 2, 2026</title>
<link>https://www.trendmicro.com/pt_br/research/26/b/what-openclaw-reveals-about-agentic-assistants.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.trendmicro.com/pt_br/research/26/b/what-openclaw-reveals-about-agentic-assistants.html?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 02 Jun 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cyber Security Agency of Singapore - Advisory on Cybersecurity Risks of OpenClaw - May 28, 2026</title>
<link>https://www.csa.gov.sg/alerts-and-advisories/advisories/ad-2026-005/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.csa.gov.sg/alerts-and-advisories/advisories/ad-2026-005/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 28 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>InfoSec Write-ups - One Agent, Five Zero-Days: Turning Past CVEs Into SAST Rules - May 27, 2026</title>
<link>https://infosecwriteups.com/one-agent-five-zero-days-turning-past-cves-into-sast-rules-650c32b20032?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://infosecwriteups.com/one-agent-five-zero-days-turning-past-cves-into-sast-rules-650c32b20032?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 27 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SecurityWeek - Raising the Cybersecurity Stakes: Ante up for the Agentic Era - May 27, 2026</title>
<link>https://www.securityweek.com/raising-the-cybersecurity-stakes-ante-up-for-the-agentic-era/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.securityweek.com/raising-the-cybersecurity-stakes-ante-up-for-the-agentic-era/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 27 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>DarkReading - For Enterprises, Security Remains Agentic AI's Biggest Challenge - May 26, 2026</title>
<link>https://www.darkreading.com/application-security/enterprises-agentic-ai-security-biggest-challenge?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.darkreading.com/application-security/enterprises-agentic-ai-security-biggest-challenge?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 26 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Times of Oman - FSA identifies three critical security flaws in OpenClaw - May 25, 2026</title>
<link>https://timesofoman.com/article/172235-fsa-identifies-three-critical-security-flaws-in-openclaw?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://timesofoman.com/article/172235-fsa-identifies-three-critical-security-flaws-in-openclaw?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 25 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>arXiv - Security of OpenClaw Agents: Fundamentals, Threats, and Countermeasures - May 25, 2026</title>
<link>https://arxiv.org/pdf/2605.25435?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://arxiv.org/pdf/2605.25435?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 25 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Financial Services Authority, Sultanate of Oman - FSA identifies three critical security flaws in OpenClaw - May 25, 2026</title>
<link>https://fsa.gov.om/home/SearchNews/1?newsId=10769&year=2026?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://fsa.gov.om/home/SearchNews/1?newsId=10769&year=2026?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 25 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TNGlobal - No ‘OpenClaw strategy’ for Agoda for the moment due to security risks, says CTO - May 23, 2026</title>
<link>https://technode.global/2026/05/23/no-openclaw-strategy-for-agoda-for-the-moment-due-to-security-risks-says-cto/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://technode.global/2026/05/23/no-openclaw-strategy-for-agoda-for-the-moment-due-to-security-risks-says-cto/?utm_source=openclaw-security-news</guid>
<pubDate>Sat, 23 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>GQ Magazine - What Happened When I Cloned Myself With OpenClaw AI - May 21, 2026</title>
<link>https://www.gq.com/story/what-happened-when-i-cloned-myself-with-openclaw-ai?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.gq.com/story/what-happened-when-i-cloned-myself-with-openclaw-ai?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CIO Magazine - The dark data problem hiding inside your AI agents - May 21, 2026</title>
<link>https://www.cio.com/article/4174915/the-dark-data-problem-hiding-inside-your-ai-agents.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cio.com/article/4174915/the-dark-data-problem-hiding-inside-your-ai-agents.html?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 20 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechTalks - How prompt injection broke Nvidia's sandboxed OpenClaw agent - May 19, 2026</title>
<link>https://bdtechtalks.substack.com/p/how-prompt-injection-broke-nvidias?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://bdtechtalks.substack.com/p/how-prompt-injection-broke-nvidias?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 19 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>OX Security - The @antv Ecosystem Was Compromised with Shai-Hulud Malware, 300+ Packages Affected - May 19, 2026</title>
<link>https://www.ox.security/blog/the-antv-ecosystem-was-compromised-with-shai-hulud-malware-300-packages-affected/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.ox.security/blog/the-antv-ecosystem-was-compromised-with-shai-hulud-malware-300-packages-affected/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 19 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TrendingTopics EU - OpenClaw Unveils Five-Point Security Plan, But Won’t Promise a “Risk-Free AI Agent” - May 18, 2026</title>
<link>https://www.trendingtopics.eu/openclaw-unveils-five-point-security-plan-but-wont-promise-a-risk-free-ai-agent/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.trendingtopics.eu/openclaw-unveils-five-point-security-plan-but-wont-promise-a-risk-free-ai-agent/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>FINAi News - FIs wary of OpenClaw security risks - May 18, 2026</title>
<link>https://finainews.com/risk-security/fis-wary-of-openclaw-security-risks/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://finainews.com/risk-security/fis-wary-of-openclaw-security-risks/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SecurityWeek - ‘Claw Chain’ OpenClaw Flaws Allow Sandbox Escape, Backdoor Delivery - May 18, 2026</title>
<link>https://www.securityweek.com/claw-chain-openclaw-flaws-allow-sandbox-escape-backdoor-delivery/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.securityweek.com/claw-chain-openclaw-flaws-allow-sandbox-escape-backdoor-delivery/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SecNews (GR) - Claw Chain: OpenClaw vulnerabilities allow complete system compromise - May 18, 2026</title>
<link>https://www.secnews.gr/en/709489/eupatheies-openclaw-claw-chain-parabiasi/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.secnews.gr/en/709489/eupatheies-openclaw-claw-chain-parabiasi/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>eSecurity Planet - OpenClaw Vulnerabilities Could Enable Full AI Agent Takeover - May 18, 2026</title>
<link>https://www.esecurityplanet.com/threats/openclaw-vulnerabilities-could-enable-full-ai-agent-takeover/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.esecurityplanet.com/threats/openclaw-vulnerabilities-could-enable-full-ai-agent-takeover/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Rescana - Claw Chain: Critical OpenClaw Vulnerabilities (CVE-2026-44112, 44113, 44115, 44118) Enable Data Theft, Privilege Escalation, and Persistent Access - May 17, 2026</title>
<link>https://www.rescana.com/post/claw-chain-critical-openclaw-vulnerabilities-cve-2026-44112-44113-44115-44118-enable-data-theft-privilege-escalation-and?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.rescana.com/post/claw-chain-critical-openclaw-vulnerabilities-cve-2026-44112-44113-44115-44118-enable-data-theft-privilege-escalation-and?utm_source=openclaw-security-news</guid>
<pubDate>Sun, 17 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cybersecurity News - OpenClaw Chain Vulnerabilities Expose 245,000 Public AI Agent Servers to Attack - May 15, 2026</title>
<link>https://cybersecuritynews.com/openclaw-chain-vulnerabilities/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cybersecuritynews.com/openclaw-chain-vulnerabilities/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 15 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Hacker News - Four OpenClaw Flaws Enable Data Theft, Privilege Escalation, and Persistence - May 15, 2026</title>
<link>https://thehackernews.com/2026/05/four-openclaw-flaws-enable-data-theft.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://thehackernews.com/2026/05/four-openclaw-flaws-enable-data-theft.html?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 15 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cyera - Claw Chain: Cyera Research Unveil Four Chainable Vulnerabilities in OpenClaw - May 15, 2026</title>
<link>https://www.cyera.com/blog/claw-chain-cyera-research-unveil-four-chainable-vulnerabilities-in-openclaw?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cyera.com/blog/claw-chain-cyera-research-unveil-four-chainable-vulnerabilities-in-openclaw?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 15 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Entrepreneur Magazine - Why Executives Are Suddenly Very Nervous About Autonomous AI - May 14, 2026</title>
<link>https://www.entrepreneur.com/science-technology/why-executives-are-suddenly-very-nervous-about-autonomous-ai/504117?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.entrepreneur.com/science-technology/why-executives-are-suddenly-very-nervous-about-autonomous-ai/504117?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 14 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Singapore Infocomm Media Development Authority (IMDA) - What is OpenClaw and what are the dangers associated with it? - May 14, 2026</title>
<link>https://www.imda.gov.sg/-/media/imda/files/about/emerging-tech-and-research/artificial-intelligence/openclaw-case-study.pdf?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.imda.gov.sg/-/media/imda/files/about/emerging-tech-and-research/artificial-intelligence/openclaw-case-study.pdf?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 14 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Straits Times (SG) - Avoid using OpenClaw in mission-critical settings, giving unrestricted access: IMDA - May 14, 2026</title>
<link>https://www.straitstimes.com/singapore/avoid-using-openclaw-in-mission-critical-settings-giving-unrestricted-access-imda?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.straitstimes.com/singapore/avoid-using-openclaw-in-mission-critical-settings-giving-unrestricted-access-imda?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 14 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Xinhua (CN) - China accelerates AI agent governance amid emerging security risks - May 14, 2026</title>
<link>https://www.bignewsnetwork.com/news/279050568/china-accelerates-ai-agent-governance-amid-emerging-security-risks?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.bignewsnetwork.com/news/279050568/china-accelerates-ai-agent-governance-amid-emerging-security-risks?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 14 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>arXiv - Toward Securing AI Agents Like Operating Systems - May 14, 2026</title>
<link>https://arxiv.org/pdf/2605.14932?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://arxiv.org/pdf/2605.14932?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 14 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TrendingTopics EU - Users Flee as OpenClaw Stumbles Through Its Most Difficult Week Ever - May 11, 2026</title>
<link>https://www.trendingtopics.eu/users-flee-as-openclaw-stumbles-through-its-most-difficult-week-ever/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.trendingtopics.eu/users-flee-as-openclaw-stumbles-through-its-most-difficult-week-ever/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 11 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CNBC - Google's TIG says it has likely thwarted efforts to use AI for a “mass exploitation event” and warns that tools like OpenClaw are being used to find exploits - May 11, 2026</title>
<link>https://www.cnbc.com/2026/05/11/google-thwarts-effort-hacker-group-use-ai-mass-exploitation-event.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cnbc.com/2026/05/11/google-thwarts-effort-hacker-group-use-ai-mass-exploitation-event.html?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 11 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SC Media - What OpenClaw revealed about the agent security model - May 11, 2026</title>
<link>https://www.scworld.com/perspective/what-openclaw-revealed-about-the-agent-security-model?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.scworld.com/perspective/what-openclaw-revealed-about-the-agent-security-model?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 11 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>QA Financial - OpenClaw panic forces Chinese banks into new AI governance and testing phase - May 11, 2026</title>
<link>https://qa-financial.com/openclaw-panic-forces-chinese-banks-into-new-ai-governance-and-testing-phase/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://qa-financial.com/openclaw-panic-forces-chinese-banks-into-new-ai-governance-and-testing-phase/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 11 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Telegraph (UK) - AI ‘agents of chaos’ run riot inside companies - May 11, 2026</title>
<link>https://www.telegraph.co.uk/business/2026/05/11/ai-agents-of-chaos-run-riot-inside-companies/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.telegraph.co.uk/business/2026/05/11/ai-agents-of-chaos-run-riot-inside-companies/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 11 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>arXiv - MATRA: Modeling the Attack Surface of Agentic AI Systems - OpenClaw Case Study - May 11, 2026</title>
<link>https://arxiv.org/pdf/2605.10763?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://arxiv.org/pdf/2605.10763?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 11 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Google Threat Intelligence - GTIG AI Threat Tracker: Adversaries Leverage AI for Vulnerability Exploitation, Augmented Operations, and Initial Access - May 11, 2026</title>
<link>https://cloud.google.com/blog/topics/threat-intelligence/ai-vulnerability-exploitation-initial-access/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cloud.google.com/blog/topics/threat-intelligence/ai-vulnerability-exploitation-initial-access/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 11 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Voice of Emirates (UAE) - The “OpenClaw” Threat: Nemotron Labs Warns of New Class of Autonomous AI Exploits - May 8, 2026</title>
<link>https://www.voiceofemirates.com/en/science-and-tech/ai/2026/05/08/the-openclaw-threat-nemotron-labs-warns-of-new-class-of-autonomous-ai-exploits/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.voiceofemirates.com/en/science-and-tech/ai/2026/05/08/the-openclaw-threat-nemotron-labs-warns-of-new-class-of-autonomous-ai-exploits/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 08 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Big Hat Group - Project Lobster Exposed: Microsoft's ClawPilot Is Live, 3,000 Employees Are Running It, and Your Security Team Isn't Ready - May 8, 2026</title>
<link>https://www.bighatgroup.com/blog/microsoft-project-lobster-clawpilot-enterprise-security-guide/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.bighatgroup.com/blog/microsoft-project-lobster-clawpilot-enterprise-security-guide/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 08 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Terra Security - We Asked OpenClaw How to Hack It. It Gave Us the Blueprint - May 7, 2026</title>
<link>https://www.terra.security/blog/openclaw-vulnerability-research?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.terra.security/blog/openclaw-vulnerability-research?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>flyingpenguin - OpenClaw is Cooked: 433 CVEs Patched by Agents That Can’t Fix What’s Broken - May 7, 2026</title>
<link>https://www.flyingpenguin.com/openclaw-is-cooked-433-cves-patched-by-agents-that-cant-fix-whats-broken/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.flyingpenguin.com/openclaw-is-cooked-433-cves-patched-by-agents-that-cant-fix-whats-broken/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Security Brief UK - Malicious OpenClaw skill spreads Remcos RAT & GhostLoader - May 7, 2026</title>
<link>https://securitybrief.co.uk/story/malicious-openclaw-skill-spreads-remcos-rat-ghostloader?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://securitybrief.co.uk/story/malicious-openclaw-skill-spreads-remcos-rat-ghostloader?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Hive Security - OpenClaw: How the Viral AI Agent Became 2026's First Major Security Crisis - May 7, 2026</title>
<link>https://hivesecurity.gitlab.io/blog/openclaw-ai-agent-security-crisis-2026/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://hivesecurity.gitlab.io/blog/openclaw-ai-agent-security-crisis-2026/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Stormshield (FR) - OpenClaw et Claude en 2026 : risques et rétrospectives - May 7, 2026</title>
<link>https://www.stormshield.com/fr/actus/openclaw-claude-risques-et-retrospectives/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.stormshield.com/fr/actus/openclaw-claude-risques-et-retrospectives/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>VentureBeat - One command turns any open-source repo into an AI agent backdoor. OpenClaw proved no supply-chain scanner has a detection category for it - May 5, 2026</title>
<link>https://venturebeat.com/security/one-command-open-source-repo-ai-agent-backdoor-openclaw-supply-chain-scanner?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://venturebeat.com/security/one-command-open-source-repo-ai-agent-backdoor-openclaw-supply-chain-scanner?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 05 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>MEXC - OpenClaw Faces Stability Issues Amid Plugin Overhaul - May 5, 2026</title>
<link>https://www.mexc.co/news/1073056?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.mexc.co/news/1073056?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 05 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Zscaler - Malicious OpenClaw Skill Distributes Remcos RAT and GhostLoader - May 5, 2026</title>
<link>https://www.zscaler.com/blogs/security-research/malicious-openclaw-skill-distributes-remcos-rat-and-ghostloader?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.zscaler.com/blogs/security-research/malicious-openclaw-skill-distributes-remcos-rat-and-ghostloader?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 05 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Federal News Network - Mitigating risk from emerging agentic AI in federal environments - May 4, 2026</title>
<link>https://federalnewsnetwork.com/commentary/2026/05/mitigating-risk-from-emerging-agentic-ai-in-federal-environments/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://federalnewsnetwork.com/commentary/2026/05/mitigating-risk-from-emerging-agentic-ai-in-federal-environments/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Information - SAP Moves to Block OpenClaw and Other Unauthorized AI Agents - May 4, 2026</title>
<link>https://www.theinformation.com/articles/sap-moves-block-openclaw-unauthorized-ai-agents?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.theinformation.com/articles/sap-moves-block-openclaw-unauthorized-ai-agents?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CSO Online - AI agents can bypass guardrails and put credentials at risk, Okta study finds - May 1, 2026</title>
<link>https://www.csoonline.com/article/4166133/ai-agents-can-bypass-guardrails-and-put-credentials-at-risk-okta-study-finds.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.csoonline.com/article/4166133/ai-agents-can-bypass-guardrails-and-put-credentials-at-risk-okta-study-finds.html?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>HackRead - 45,000 Attacks, 5,300+ Backdoors Tied to China-Linked Cybercrime Operation - May 1, 2026</title>
<link>https://hackread.com/45k-attacks-53k-backdoor-china-cybercrime-operation/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://hackread.com/45k-attacks-53k-backdoor-china-cybercrime-operation/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SecurityWeek - Hugging Face, ClawHub Abused for Malware Distribution - May 1, 2026</title>
<link>https://www.securityweek.com/hugging-face-clawhub-abused-for-malware-distribution/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.securityweek.com/hugging-face-clawhub-abused-for-malware-distribution/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SOCRadar Threat Research Team - Chinese Cybercrime Infrastructure Detected: Automated Exploitation & Harvesting Infrastructure - April 30, 2026</title>
<link>https://socradar.io/blog/chinese-cybercrime-exploitation-harvesting/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://socradar.io/blog/chinese-cybercrime-exploitation-harvesting/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 30 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Acronis Threat Research Unit - Poisoning the well: AI supply chain attacks on Hugging Face and OpenClaw - April 30, 2026</title>
<link>https://www.acronis.com/en/tru/posts/poisoning-the-well-ai-supply-chain-attacks-on-hugging-face-and-openclaw/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.acronis.com/en/tru/posts/poisoning-the-well-ai-supply-chain-attacks-on-hugging-face-and-openclaw/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 30 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Register - 30 ClawHub skills secretly turn AI agents into a crypto swarm - April 29, 2026</title>
<link>https://www.theregister.com/2026/04/29/30_clawhub_skills_mine_crypto/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.theregister.com/2026/04/29/30_clawhub_skills_mine_crypto/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 29 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Motasem Hamdan - OpenClaw AI Agent Just Got Hacked - April 29, 2026</title>
<link>https://www.youtube.com/watch?v=Vu6qQ_KzrOQ?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.youtube.com/watch?v=Vu6qQ_KzrOQ?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 29 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Lao Dong (VN) - OpenClaw and business security problems - April 29, 2026</title>
<link>https://news.laodong.vn/cong-nghe/openclaw-va-bai-toan-bao-mat-doanh-nghiep-1693566.ldo?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://news.laodong.vn/cong-nghe/openclaw-va-bai-toan-bao-mat-doanh-nghiep-1693566.ldo?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 29 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>betterclaw.io - OpenClaw Security 2026: 138 CVEs, Every Vendor Response - April 29, 2026</title>
<link>https://www.betterclaw.io/blog/openclaw-security-2026?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.betterclaw.io/blog/openclaw-security-2026?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 29 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Okta Threat Intelligence - Phishing the agent: Why AI guardrails aren’t enough - April 28, 2026</title>
<link>https://www.okta.com/newsroom/articles/why-ai-guardrails-are-not-enough/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.okta.com/newsroom/articles/why-ai-guardrails-are-not-enough/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 28 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Corporate Compliance Insights - OpenClaw Reveals Hidden Security Risks of Agentic AI - April 27, 2026</title>
<link>https://www.corporatecomplianceinsights.com/openclaw-reveals-hidden-risks-agentic-ai/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.corporatecomplianceinsights.com/openclaw-reveals-hidden-risks-agentic-ai/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 27 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechRadar Pro - Shadow AI and agents like OpenClaw are hijacking corporate data too easily - April 27, 2026</title>
<link>https://www.techradar.com/pro/shadow-ai-and-agents-like-openclaw-are-hijacking-corporate-data-too-easily?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.techradar.com/pro/shadow-ai-and-agents-like-openclaw-are-hijacking-corporate-data-too-easily?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 27 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CyberPress - Multiple OpenClaw Vulnerabilities Enable Policy Bypass and Host Override Attacks - April 27, 2026</title>
<link>https://cyberpress.org/multiple-openclaw-vulnerabilities/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cyberpress.org/multiple-openclaw-vulnerabilities/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 27 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>DigiTimes Asia - OpenClaw's growing pains: innovation outpaces enterprise security - April 24, 2026</title>
<link>https://www.digitimes.com/news/a20260423VL213/niche-security-software-tencent.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.digitimes.com/news/a20260423VL213/niche-security-software-tencent.html?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 24 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Security Magazine - What Claude and OpenClaw Vulnerabilities Reveal About AI Agents - April 24, 2026</title>
<link>https://www.securitymagazine.com/blogs/14-security-blog/post/102257-what-claude-and-openclaw-vulnerabilities-reveal-about-ai-agents?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.securitymagazine.com/blogs/14-security-blog/post/102257-what-claude-and-openclaw-vulnerabilities-reveal-about-ai-agents?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 24 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Silicon.fr - L’ANSSI alerte à son tour sur les dangers d’OpenClaw… - April 24, 2026</title>
<link>https://www.silicon.fr/cybersecurite-1371/anssi-openclaw-226895?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.silicon.fr/cybersecurite-1371/anssi-openclaw-226895?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 24 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>IBM - Agentic AI is growing fast, as are the vulnerabilities - April 23, 2026</title>
<link>https://www.ibm.com/think/x-force/agentic-ai-growing-fast-vulnerabilities?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.ibm.com/think/x-force/agentic-ai-growing-fast-vulnerabilities?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 23 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>SentinelOne - CVE Vulnerability Database Vulnerability Database/CVE-2026-41301 CVE-2026-41301: OpenClaw Auth Bypass Vulnerability - April 23, 2026</title>
<link>https://www.sentinelone.com/vulnerability-database/cve-2026-41301/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.sentinelone.com/vulnerability-database/cve-2026-41301/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 23 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Forbes - Problems With OpenClaw? You’re Not Alone - April 22, 2026</title>
<link>https://www.forbes.com/sites/johnwerner/2026/04/22/problems-with-openclaw-youre-not-alone/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.forbes.com/sites/johnwerner/2026/04/22/problems-with-openclaw-youre-not-alone/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 22 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The Information - OpenClaw Struggles to Grow Up After Overnight Success - April 22, 2026</title>
<link>https://www.theinformation.com/articles/openclaw-struggles-grow-overnight-success?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.theinformation.com/articles/openclaw-struggles-grow-overnight-success?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 22 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechRadar - 'The math is simple': OpenClaw 'Trojan Horse' AI agents give hackers full control of 28,000+ systems - April 22, 2026</title>
<link>https://www.techradar.com/pro/security/the-math-is-simple-openclaw-trojan-horse-ai-agents-give-hackers-full-control-of-28-000-systems?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.techradar.com/pro/security/the-math-is-simple-openclaw-trojan-horse-ai-agents-give-hackers-full-control-of-28-000-systems?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 22 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Born/City (DE) - OpenClaw: KI-System löst globale Sicherheitskrise aus - April 22, 2026</title>
<link>https://borncity.com/news/openclaw-ki-system-loest-globale-sicherheitskrise-aus/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://borncity.com/news/openclaw-ki-system-loest-globale-sicherheitskrise-aus/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 22 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Centre for Cybersecurity Belgium - Warning: Privilege Escalation in OpenClaw, Patch Immediately! - April 21, 2026</title>
<link>https://ccb.belgium.be/advisories/warning-privilege-escalation-openclaw-patch-immediately?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://ccb.belgium.be/advisories/warning-privilege-escalation-openclaw-patch-immediately?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 21 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cybernews - I asked OpenClaw to analyze stocks, but it failed and killed itself - April 20, 2026</title>
<link>https://cybernews.com/editorial/qwen-powered-openclaw-self-destructs-after-failure/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cybernews.com/editorial/qwen-powered-openclaw-self-destructs-after-failure/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 20 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>AISI|AI Security Institute (UK) - What can sandboxed AI agents learn about their evaluation environments? - April 20, 2026</title>
<link>https://www.aisi.gov.uk/blog/what-can-sandboxed-ai-agents-learn-about-their-evaluation-environments?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.aisi.gov.uk/blog/what-can-sandboxed-ai-agents-learn-about-their-evaluation-environments?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 20 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CNBC - SiIicon Valley’s AI agent hiccups: Wasted tokens and ‘chaotic’ systems - April 19, 2026</title>
<link>https://www.cnbc.com/2026/04/19/siiicon-valley-ai-agent-openclaw-problems.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cnbc.com/2026/04/19/siiicon-valley-ai-agent-openclaw-problems.html?utm_source=openclaw-security-news</guid>
<pubDate>Sun, 19 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Leto - IA agentique au bureau : l'ANSSI déconseille formellement tout déploiement en production - April 19,2026</title>
<link>https://www.leto.legal/news/anssi-ia-agentique-postes-travail-risques-2026?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.leto.legal/news/anssi-ia-agentique-postes-travail-risques-2026?utm_source=openclaw-security-news</guid>
<pubDate>Sun, 19 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>AFP/France24/Globally Syndicated - AI 'agent' fever comes with lurking security threats - April 18, 2026</title>
<link>https://www.france24.com/en/live-news/20260419-ai-agent-fever-comes-with-lurking-security-threats?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.france24.com/en/live-news/20260419-ai-agent-fever-comes-with-lurking-security-threats?utm_source=openclaw-security-news</guid>
<pubDate>Sat, 18 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Infosecurity Magazine - OpenClaw Exposes the Real Cybersecurity Risks of Agentic AI - April 17, 2026</title>
<link>https://www.infosecurity-magazine.com/opinions/openclaw-exposes-real-security/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.infosecurity-magazine.com/opinions/openclaw-exposes-real-security/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 17 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Supply House Times - AI is moving faster than your security policies - April 17, 2026</title>
<link>https://www.supplyht.com/articles/107171-ai-is-moving-faster-than-your-security-policies?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.supplyht.com/articles/107171-ai-is-moving-faster-than-your-security-policies?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 17 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Arabian Post (UAE) - OpenClaw sharpens agentic AI security warning - April 17, 2026</title>
<link>https://thearabianpost.com/openclaw-sharpens-agentic-ai-security-warning/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://thearabianpost.com/openclaw-sharpens-agentic-ai-security-warning/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 17 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The National Tribune (AU) - OpenClaw And Security Risks Of AI Frenzy - April 16, 2026</title>
<link>https://www.nationaltribune.com.au/openclaw-and-security-risks-of-ai-frenzy/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.nationaltribune.com.au/openclaw-and-security-risks-of-ai-frenzy/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 16 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Twitter - I ran my own analysis which flags fake stars based on spam clustering and account activity - April 15, 2026</title>
<link>https://x.com/___4o____/status/2044382380316578108?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://x.com/___4o____/status/2044382380316578108?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 15 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>BDM (FR) - OpenClaw, Claude Cowork : le CERT-FR met en garde contre les agents IA autonomes - April 15, 2026</title>
<link>https://www.blogdumoderateur.com/openclaw-claude-cowork-cert-fr-agents-ia-autonomes/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.blogdumoderateur.com/openclaw-claude-cowork-cert-fr-agents-ia-autonomes/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 15 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Pune Times Mirror (IN) - Microsoft OpenClaw Copilot AI Sparks Bold Promise, Serious Fears - April 15, 2026</title>
<link>https://punemirror.com/technology/ai/microsoft-openclaw-copilot-ai-agents/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://punemirror.com/technology/ai/microsoft-openclaw-copilot-ai-agents/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 15 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>PCMag - 4 Critical Reasons OpenClaw Is the Most Overhyped AI Tool Right Now - April 14, 2026</title>
<link>https://www.pcmag.com/opinions/4-critical-reasons-openclaw-is-the-most-overhyped-ai-tool-right-now?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.pcmag.com/opinions/4-critical-reasons-openclaw-is-the-most-overhyped-ai-tool-right-now?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 14 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>clubic (FR) - Injection de prompt, fuite de données, droits excessifs... le CERT-FR détaille les failles d'OpenClaw - April 14, 2026</title>
<link>https://www.clubic.com/actualite-608878-l-anssi-alerte-openclaw-est-bien-trop-risque-sur-votre-poste-de-travail.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.clubic.com/actualite-608878-l-anssi-alerte-openclaw-est-bien-trop-risque-sur-votre-poste-de-travail.html?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 14 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>American Banker - AI agents are going rogue. Here's what banks can do about it - April 13, 2026</title>
<link>https://www.americanbanker.com/news/ai-agents-are-going-rogue-heres-what-banks-can-do-about-it?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.americanbanker.com/news/ai-agents-are-going-rogue-heres-what-banks-can-do-about-it?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>BCG - CIOs, OpenClaw, and the New Wave of Autonomous AI Agents - April 13, 2026</title>
<link>https://www.bcg.com/publications/2026/cios-openclaw-and-the-new-wave-of-ai-agents?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.bcg.com/publications/2026/cios-openclaw-and-the-new-wave-of-ai-agents?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>KDNuggets - Are AI Agents Your Next Security Nightmare? - April 13, 2026</title>
<link>https://www.kdnuggets.com/are-ai-agents-your-next-security-nightmare?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.kdnuggets.com/are-ai-agents-your-next-security-nightmare?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>CERT-FR / ANSSI (France) - CERTFR-2026-ACT-016 — Vulnérabilités et risques des produits d'automatisation par IA agentique sur les postes de travail - April 13, 2026</title>
<link>https://www.cert.ssi.gouv.fr/actualite/CERTFR-2026-ACT-016/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.cert.ssi.gouv.fr/actualite/CERTFR-2026-ACT-016/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Qualys - Anatomy of an Autonomous AI Agent Risk: How Qualys ETM Connects the Dots on OpenClaw - April 13, 2026</title>
<link>https://blog.qualys.com/product-tech/2026/04/13/anatomy-autonomous-ai-agent-risk-qualys-etm-openclaw?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://blog.qualys.com/product-tech/2026/04/13/anatomy-autonomous-ai-agent-risk-qualys-etm-openclaw?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Times of India - Salesforce CEO Marc Benioff on the AI agent OpenClaw that Sam Altman spent billions on: It cannot be trusted because... - April 10, 2026</title>
<link>https://timesofindia.indiatimes.com/technology/tech-news/salesforce-ceo-marc-benioff-on-the-ai-agent-openclaw-that-sam-altman-spent-billions-on-it-cannot-be-trusted-because-/articleshow/130169331.cms?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://timesofindia.indiatimes.com/technology/tech-news/salesforce-ceo-marc-benioff-on-the-ai-agent-openclaw-that-sam-altman-spent-billions-on-it-cannot-be-trusted-because-/articleshow/130169331.cms?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 10 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Institutional Investor - Institutional Investors Take Note: the OpenClaw Security Threat Is No Longer Theoretical - April 9, 2026</title>
<link>https://www.institutionalinvestor.com/article/institutional-investors-take-note-openclaw-security-threat-no-longer-theoretical?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.institutionalinvestor.com/article/institutional-investors-take-note-openclaw-security-threat-no-longer-theoretical?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 09 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechBullion (UK) - OpenClaw Has 230,000 GitHub Stars and a Security Problem – This Is How the Industry Is Responding - April 9, 2026</title>
<link>https://techbullion.com/openclaw-has-230000-github-stars-and-a-security-problem-this-is-how-the-industry-is-responding/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://techbullion.com/openclaw-has-230000-github-stars-and-a-security-problem-this-is-how-the-industry-is-responding/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 09 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Barracuda Networks - OpenClaw security risks: What security teams need to know about agentic AI - April 9, 2026</title>
<link>https://blog.barracuda.com/2026/04/09/openclaw-security-risks-agentic-ai?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://blog.barracuda.com/2026/04/09/openclaw-security-risks-agentic-ai?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 09 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cyble - The Week in Vulnerabilities: OpenClaw, FreeBSD, F5 BIG-IP, and Critical ICS Bugs - April 9, 2026</title>
<link>https://cyble.com/blog/cyble-weekly-vulnerability-report-apr-08/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cyble.com/blog/cyble-weekly-vulnerability-report-apr-08/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 09 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Android Headlines - Critical OpenClaw AI Vulnerability Hands Out Admin Access to Attackers: Update Now - April 8, 2026</title>
<link>https://www.androidheadlines.com/2026/04/openclaw-critical-security-vulnerability-admin-takeover.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.androidheadlines.com/2026/04/openclaw-critical-security-vulnerability-admin-takeover.html?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 08 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>DEV Community - The OpenClaw Security Crisis: 135,000 Exposed AI Agents and the Runtime Governance Gap - April 8, 2026</title>
<link>https://dev.to/waxell/the-openclaw-security-crisis-135000-exposed-ai-agents-and-the-runtime-governance-gap-e26?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://dev.to/waxell/the-openclaw-security-crisis-135000-exposed-ai-agents-and-the-runtime-governance-gap-e26?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 08 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Infobae (ES/EFE) - Corregida una vulnerabilidad crítica en OpenClaw que permitía obtener permisos de administrador y controlar la instancia - April 8, 2026</title>
<link>https://www.infobae.com/america/agencias/2026/04/08/corregida-una-vulnerabilidad-critica-en-openclaw-que-permitia-obtener-permisos-de-administrador-y-controlar-la-instancia/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.infobae.com/america/agencias/2026/04/08/corregida-una-vulnerabilidad-critica-en-openclaw-que-permitia-obtener-permisos-de-administrador-y-controlar-la-instancia/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 08 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Mashable - A frightening OpenClaw vulnerability has been discovered - April 7, 2026</title>
<link>https://mashable.com/article/new-frightening-openclaw-vulnerability-has-been-discovered?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://mashable.com/article/new-frightening-openclaw-vulnerability-has-been-discovered?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 07 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Greenbone.net - GreenboneOS: March 2026 Threat Report: New Critical Risks Span the Enterprise Attack Surface - April 7, 2026</title>
<link>https://www.greenbone.net/en/blog/march-2026-threat-report-new-critical-risks-span-the-enterprise-attack-surface/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.greenbone.net/en/blog/march-2026-threat-report-new-critical-risks-span-the-enterprise-attack-surface/?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 07 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Blink - OpenClaw CVEs 2026: Complete Vulnerability Timeline - April 6, 2026</title>
<link>https://blink.new/blog/openclaw-2026-cve-complete-timeline-security-history?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://blink.new/blog/openclaw-2026-cve-complete-timeline-security-history?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 06 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>BBC (UK) - How China fell for a lobster: What an AI assistant tells us about Beijing's ambition - April 6, 2026</title>
<link>https://www.bbc.com/news/articles/cy41n17e23go?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.bbc.com/news/articles/cy41n17e23go?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 06 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>The AI Journal - The Identity Problem Agent Swarms Can’t Ignore - April 6, 2026</title>
<link>https://aijourn.com/the-identity-problem-agent-swarms-cant-ignore/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://aijourn.com/the-identity-problem-agent-swarms-cant-ignore/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 06 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Critical Path Security - CVE-2026-32987: Privilege Escalation in OpenClaw via Bootstrap Code Replay - April 6, 2026</title>
<link>https://www.criticalpathsecurity.com/cve-2026-32987-privilege-escalation-in-openclaw-via-bootstrap-code-replay/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.criticalpathsecurity.com/cve-2026-32987-privilege-escalation-in-openclaw-via-bootstrap-code-replay/?utm_source=openclaw-security-news</guid>
<pubDate>Mon, 06 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>DongA Science (KR) - New AI Agent 'OpenClaw' Faces Immediate Bans Over Security Concerns - April 4, 2026</title>
<link>https://www.dongascience.com/en/news/77197?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.dongascience.com/en/news/77197?utm_source=openclaw-security-news</guid>
<pubDate>Sat, 04 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Alltoc.com - OpenClaw security risks drive malware scares #tech - April 4, 2026</title>
<link>https://alltoc.com/tech/openclaw-security-risks-drive-malware-scares?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://alltoc.com/tech/openclaw-security-risks-drive-malware-scares?utm_source=openclaw-security-news</guid>
<pubDate>Sat, 04 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Reddit - If you're running OpenClaw, you probably got hacked in the last week CVE-2026-33579 CVSS 8.6 HIGH - April 3, 2026</title>
<link>https://old.reddit.com/r/sysadmin/comments/1sbdw29/if_youre_running_openclaw_you_probably_got_hacked/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://old.reddit.com/r/sysadmin/comments/1sbdw29/if_youre_running_openclaw_you_probably_got_hacked/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Ars Technica - OpenClaw gives users yet another reason to be freaked out about security - April 3, 2026</title>
<link>https://arstechnica.com/security/2026/04/heres-why-its-prudent-for-openclaw-users-to-assume-compromise/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://arstechnica.com/security/2026/04/heres-why-its-prudent-for-openclaw-users-to-assume-compromise/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Startup Fortune - OpenClaw Users Should Assume Compromise, Security Experts Warn - April 3, 2026</title>
<link>https://startupfortune.com/openclaw-users-should-assume-compromise-security-experts-warn/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://startupfortune.com/openclaw-users-should-assume-compromise-security-experts-warn/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>InfoWorld - Understanding the risks of OpenClaw - April 3, 2026</title>
<link>https://www.infoworld.com/article/4153975/understanding-the-risks-of-openclaw.html?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.infoworld.com/article/4153975/understanding-the-risks-of-openclaw.html?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>XDA Developers - I ran Nvidia's NemoClaw to see if OpenClaw is finally safe, but it still has the same problems - April 6, 2026</title>
<link>https://www.xda-developers.com/ran-nvidia-nemoclaw-openclaw-finally-safe-same-problems/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.xda-developers.com/ran-nvidia-nemoclaw-openclaw-finally-safe-same-problems/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Open Source For U (India) - China’s OpenClaw Gold Rush Turns Into Security Panic - April 3, 2026</title>
<link>https://www.opensourceforu.com/2026/04/chinas-openclaw-gold-rush-turns-into-security-panic/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.opensourceforu.com/2026/04/chinas-openclaw-gold-rush-turns-into-security-panic/?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Korea Startup Post - CertiK Announces the “OpenClaw Security Report”… Warning of Security Architecture Flaws in AI Agent Systems - April 3, 2026</title>
<link>https://www.kspost.biz/en-us/articles/2413?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.kspost.biz/en-us/articles/2413?utm_source=openclaw-security-news</guid>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Coinfomania - Vitalik Buterin Flags Data Exfiltration Risks in OpenClaw - April 2, 2026</title>
<link>https://coinfomania.com/vitalik-buterin-flags-data-exfiltration-risks-in-openclaw/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://coinfomania.com/vitalik-buterin-flags-data-exfiltration-risks-in-openclaw/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 02 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechNode - OpenClaw launches official China mirror with infrastructure support from ByteDance - April 2, 2026</title>
<link>https://technode.com/2026/04/02/openclaw-launches-official-china-mirror-with-infrastructure-support-from-bytedance/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://technode.com/2026/04/02/openclaw-launches-official-china-mirror-with-infrastructure-support-from-bytedance/?utm_source=openclaw-security-news</guid>
<pubDate>Thu, 02 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TechRadar - Here are the OpenClaw security risks you should know about - April 1, 2026</title>
<link>https://www.techradar.com/pro/here-are-the-openclaw-security-risks-you-should-know-about?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.techradar.com/pro/here-are-the-openclaw-security-risks-you-should-know-about?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>TNGlobal - Why OpenClaw is forcing a rethink of AI security, trust, and authority - April 1, 2026</title>
<link>https://technode.global/2026/04/01/why-openclaw-is-forcing-a-rethink-of-ai-security-trust-and-authority/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://technode.global/2026/04/01/why-openclaw-is-forcing-a-rethink-of-ai-security-trust-and-authority/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Transparency Coalition - TCAI Guide: The risks of AI agents built with OpenClaw and other frameworks - April 1, 2026</title>
<link>https://www.transparencycoalition.ai/news/tcai-guide-the-risks-of-ai-agents-built-with-openclaw-and-other-frameworks?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.transparencycoalition.ai/news/tcai-guide-the-risks-of-ai-agents-built-with-openclaw-and-other-frameworks?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Crypto News Australia - AI Agent Boom Turns Risky: OpenClaw Exposes Millions to Hacks and Crypto Theft - April 1, 2026</title>
<link>https://cryptonews.com.au/news/ai-agent-boom-turns-risky-openclaw-exposes-millions-to-hacks-and-crypto-theft-133469/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://cryptonews.com.au/news/ai-agent-boom-turns-risky-openclaw-exposes-millions-to-hacks-and-crypto-theft-133469/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Global Times (CN) - China’s National Intellectual Property Administration warns of hidden risks of using agentic AI tools to draft patent applications - April 1, 2026</title>
<link>https://www.globaltimes.cn/page/202604/1358009.shtml?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://www.globaltimes.cn/page/202604/1358009.shtml?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Bitcoin News (FR) - Étude : une faille critique dans OpenClaw permet un détournement complet des privilèges administratifs - April 1, 2026</title>
<link>https://news.bitcoin.com/fr/etude-une-faille-critique-dans-openclaw-permet-un-detournement-complet-des-privileges-administratifs/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://news.bitcoin.com/fr/etude-une-faille-critique-dans-openclaw-permet-un-detournement-complet-des-privileges-administratifs/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>Wizard Cyber - OpenClaw: When Autonomous AI Becomes A High-Privilege Security Risk - April 1, 2026</title>
<link>https://wizardcyber.com/openclaw-autonomous-ai-security-risk/?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://wizardcyber.com/openclaw-autonomous-ai-security-risk/?utm_source=openclaw-security-news</guid>
<pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate>
</item>
<item>
<title>VentureBeat - OpenClaw has 500,000 instances and no enterprise kill switch - March 31, 2026</title>
<link>https://venturebeat.com/security/openclaw-500000-instances-no-enterprise-kill-switch?utm_source=openclaw-security-news</link>
<guid isPermaLink="true">https://venturebeat.com/security/openclaw-500000-instances-no-enterprise-kill-switch?utm_source=openclaw-security-news</guid>
<pubDate>Tue, 31 Mar 2026 00:00:00 +0000</pubDate>
</item>
<item>