Keychron announces first open-source firmware for gaming mice
Fresh coverage from the live news archive.
Topics
These groupings combine written posts with the live news archive, so tags like AI, agents, regulation, and infrastructure actually mean something.
Newest stories and posts filed under AI.
Fresh coverage from the live news archive.
The deal is Cyera's third acquisition this year.
Longevity AI and researchers from Meir Medical Center of the Clalit Health Group announced a joint research collaboration to evaluate and recalibrate clinical risk prediction models for cardiovascular disease and Type 2 diabetes using longitudinal real-world data from Clalit’s integrated healthcare system. The initiative will retrain and assess globally recognized cardiovascular and Type 2 diabetes […] The post Longevity AI, Clalit collaborate to improve heart disease and diabetes risk predictions appeared first on Longevity.Technology .
<p>ChatGPT developer says activity by autonomous tool was not at severity or scale of what occurred at Hugging Face</p><p>OpenAI has revealed that a cyber-attack <a href="https://www.theguardian.com/technology/2026/jul/22/openai-says-its-models-went-rogue-and-hacked-startup-in-unprecedented-incident">carried out by a rogue AI agent</a> had more than one victim.</p><p>The ChatGPT developer said the agent – an autonomous tool able to carry out sequences of commands without human help – had located and used logins to access four other unnamed “publicly-available services” in addition to the US startup Hugging Face.</p> <a href="https://www.theguardian.com/technology/2026/jul/29/rogue-openai-agent-that-hacked-startup-tried-to-attack-other-firms">Continue reading...</a>
Fresh coverage from the live news archive.
Google is expanding its Play Age Signals API, giving Android developers a privacy-preserving way to tailor experiences based on users’ age ranges.
Newest stories and posts filed under Models.
Fresh coverage from the live news archive.
It powers a new macOS app for local audio transcription.
Bounding boxes and structured prompts helped accelerate model training.
MAI-Code-1-Flash will integrate exclusively inside GitHub Copilot.
Anthropic is expanding Project Glasswing, its security vulnerability program, and access to Mythos to 150 organizations across 15 countries — targeting critical infrastructure in power, water, healthcare, and communications where a cyberattack could affect 100 million people.
Codex Paper Pulls YouTube Thumbnails and Mixes Images with GPT-Image 2 - tracked by 1 author on X.
Newest stories and posts filed under Agents.
The deal is Cyera's third acquisition this year.
<p>ChatGPT developer says activity by autonomous tool was not at severity or scale of what occurred at Hugging Face</p><p>OpenAI has revealed that a cyber-attack <a href="https://www.theguardian.com/technology/2026/jul/22/openai-says-its-models-went-rogue-and-hacked-startup-in-unprecedented-incident">carried out by a rogue AI agent</a> had more than one victim.</p><p>The ChatGPT developer said the agent – an autonomous tool able to carry out sequences of commands without human help – had located and used logins to access four other unnamed “publicly-available services” in addition to the US startup Hugging Face.</p> <a href="https://www.theguardian.com/technology/2026/jul/29/rogue-openai-agent-that-hacked-startup-tried-to-attack-other-firms">Continue reading...</a>
Fresh coverage from the live news archive.
<p><strong><a href="https://huggingface.co/blog/agent-intrusion-technical-timeline">Anatomy of a Frontier Lab Agent Intrusion: A Technical Timeline of the July 2026 Incident</a></strong></p> Hugging Face just released this extremely detailed technical description of <a href="https://simonwillison.net/2026/Jul/22/openai-cyberattack/">OpenAI's recent accidental cyberattack against their infrastructure</a>. This attack was <em>very</em> sophisticated, and the resulting document doubles as a crash-course in modern adversarial security approaches.</p> <p>We're still waiting for more details from OpenAI on how their agent broke out of its sandbox. The package proxy that it found a zero-day vulnerability in has now been confirmed as JFrog's Artifactor, and <a href="https://jfrog.com/blog/jfrog-and-openai-collaboration-on-zero-day-security-findings/">JFrog and OpenAI Collaboration on Zero-Day Security Findings</a> from JFrog links to the <a href="https://docs.jfrog.com/releases/docs/artifactory-self-managed-releases#artifactory-7161">Artifactory 7.161.15 release notes</a> which list 8 separate CVEs credited to OpenAI staff members.</p> <p>Having broken out through the HTTP proxy, the agent started by establishing a base of operations for the rest of the attack:</p> <blockquote> <p>[...] the agent escaped its sandbox by exploiting a zero-day in the package registry cache proxy, one of its primary permitted network egress with internet, then abused a public code-evaluation external sandbox hosted on a third-party provider's infrastructure. It was able to run commands as root/admin on that external sandbox and used it as a control, staging, and egress base for the entire campaign: it acted as an external launchpad for the agent.</p> </blockquote> <p>(That "third-party provider" <a href="https://simonwillison.net/2026/Jul/28/akshat-bubna/">turned out to be Modal</a>.)</p> <p>It then spent <strong>five days</strong> - from Thursday 8th to Monday 13th July - executing a classic attack pattern: establishing C2 (command and control), reconnaissance, escalating privileges, dumping configuration information, exfiltrating the target data, and cleaning up after itself.</p> <p>(The first Hugging Face post about the incident followed <a href="https://huggingface.co/blog/security-incident-july-2026">on Thursday 16th</a>, and OpenAI's confession came <a href="https://openai.com/index/hugging-face-model-evaluation-security-incident/">on Tuesday 21st</a>.)</p> <p>Along the way it used all kinds of neat tricks. At one point it found an unsafe Jinja2 template execution and used it to execute arbitrary code:</p> <pre><code>{{ cycler.__init__.__globals__.__builtins__.exec( "import gzip,base64; exec(gzip.decompress(base64.b64decode('<payload>')))" ) }} </code></pre> <p>It broke out of a container within Hugging Face, stole a Kubernetes service-account token, and used that to further explore the network.</p> <p>It monkey-patched the Python socket library to hard-code an IP address when "DNS got in the way":</p> <pre><code>socket.getaddrinfo = lambda *a, **k: [(2, 1, 6, '', ('<pinned-ip>', 443))] </code></pre> <p>It even fired up its own Tailscale network to help exfiltrate data!</p> <pre><code>tailscaled --tun=userspace-networking \ --state=mem: --socket=/tmp/ts.sock \ --socks5-server=127.0.0.1:1055 \ --no-logs-no-support >/tmp/td 2>&1 & </code></pre> <p>The Hugging Face team note that, while a human attacker could have discovered and used the same exploits, the key difference here was <em>speed</em>:</p> <blockquote> <p>Our learning from this type of attack is that machine-speed offense makes ordinary weaknesses more expensive for defenders. LLM agents bring a step increase in the number of paths an attacker can test, the speed at which failed paths can be replaced, and the volume of evidence defenders must interpret.</p> </blockquote> <p>What's clear to me from this is that the very best frontier models, unencumbered by additional guardrails, <strong>will</strong> find an exploit if there is one to be found.</p> <p>The entire software industry needs to up its security game. <p>Tags: <a href="https://simonwillison.net/tags/jinja">jinja</a>, <a href="https://simonwillison.net/tags/python">python</a>, <a href="https://simonwillison.net/tags/security">security</a>, <a href="https://simonwillison.net/tags/ai">ai</a>, <a href="https://simonwillison.net/tags/openai">openai</a>, <a href="https://simonwillison.net/tags/generative-ai">generative-ai</a>, <a href="https://simonwillison.net/tags/llms">llms</a>, <a href="https://simonwillison.net/tags/hugging-face">hugging-face</a>, <a href="https://simonwillison.net/tags/coding-agents">coding-agents</a>, <a href="https://simonwillison.net/tags/ai-security-research">ai-security-research</a>, <a href="https://simonwillison.net/tags/openai-hugging-face-incident">openai-hugging-face-incident</a></p>
WhatsApp will charge businesses for using its AI agent based on token usage
The Series F round values Coralogix at $1.6 billion and comes less than a year after its previous raise.
Newest stories and posts filed under Product.
U.K. regulators are requiring Google offer a tool allowing website publishers to opt-out of generative AI search features. The option will be tested in the U.K. then rolled out globally.
The assistant requires explicit user approval before executing tasks
The assistant requires explicit user approval before executing workflows
OpenAI is getting serious about courting enterprise users. On Tuesday, the AI lab released a new set of capabilities for Codex, meant to expand the agentic tool’s uses in the workplace. Together with the new tools, the company released an internal report on how Codex is being used for knowledge w...
The golden age of Microsoft's Github Copilot appears to be at an end.
If you're looking for a fun way to connect with nature while collecting bird species on an app like Pokémon, give this smart feeder a try.
Newest stories and posts filed under Enterprise.
WhatsApp will charge businesses for using its AI agent based on token usage
Enterprise AI is entering a different phase now, one where enterprises are no longer evaluating whether AI is exciting. They are evaluating whether it is safe to deploy broadly.
Anthropic is an AI safety and research company that's working to build reliable, interpretable, and steerable AI systems.
Anthropic is an AI safety and research company that's working to build reliable, interpretable, and steerable AI systems.
We're launching Claude for Small Business, a package of connectors and ready-to-run workflows that put Claude inside the tools small businesses use every day.
For founders and investors, Anthropic's new offering signals that the AI platform wars are expanding downmarket and that the next major battleground for user acquisition isn't the Fortune 500; it's the 36 million small businesses that make up the backbone of the U.S. economy.
Newest stories and posts filed under Infrastructure.
Recursive’s emphasis on self-improving AI systems means much of the budget that would traditionally go toward headcount and operations is put straight into compute, as the company seeks to automate its own product development process.
Anthropic is expanding Project Glasswing, its security vulnerability program, and access to Mythos to 150 organizations across 15 countries — targeting critical infrastructure in power, water, healthcare, and communications where a cyberattack could affect 100 million people.
They feature a custom Grace CPU co-designed with MediaTek.
Environmental activist Erin Brockovich has a new mission.
The division transitioned from Aditya Ramesh's world simulation program.
The bank raised price targets for key memory manufacturers.
Newest stories and posts filed under Research.
The bot runs Claude Opus 4.8 via OpenRouter
He plans to continue working on open-source AI models.
Codex Paper Pulls YouTube Thumbnails and Mixes Images with GPT-Image 2 - tracked by 1 author on X.
He described the next few years as especially formative for frontier models.
He described the next few years as especially formative for frontier models.
ArXiv is doing more to crack down on the careless use of large language models in scientific papers.
Newest stories and posts filed under Safety.
U.K. regulators are requiring Google offer a tool allowing website publishers to opt-out of generative AI search features. The option will be tested in the U.K. then rolled out globally.
Up to half of OpenAI researchers on O-1 visas could be impacted.
VPO raises pass@k scores on LiveCodeBench over GRPO baselines.
arXiv:2605.16265v1 Announce Type: new Abstract: The safety of autonomous AI agents is increasingly recognized as a critical open problem. As agents transition from passive text generators to active actors capable of executing shell commands, modifying files, calling APIs, and browsing the web, th...
arXiv:2605.15204v1 Announce Type: new Abstract: Multi-agent orchestration frameworks such as LangChain, LangGraph, and CrewAI route tasks through graph-based pipelines but do not enforce the stage constraints that govern real business processes. We present SDOF, a framework that treats multi-agen...
Anthropic is an AI safety and research company that's working to build reliable, interpretable, and steerable AI systems.
Newest stories and posts filed under Regulation.
Insilico Medicine announced that first-in-human Phase 1 trial data for ISM6331 has been accepted for a Rapid Oral presentation at the European Society for Medical Oncology Congress 2026, scheduled for 23-27 October 2026, in Madrid, Spain. The Rapid Oral session is listed as Developmental Therapeutic, abstract number 997, and is scheduled for Sunday, 25 October […] The post Insilico to present Phase 1 trial data for AI-designed cancer drug at ESMO 2026 appeared first on Longevity.Technology .
U.K. regulators are requiring Google offer a tool allowing website publishers to opt-out of generative AI search features. The option will be tested in the U.K. then rolled out globally.
Up to half of OpenAI researchers on O-1 visas could be impacted.
VPO raises pass@k scores on LiveCodeBench over GRPO baselines.
Elon Musk's claim that he was mistreated by his OpenAI cofounders failed after nine California jurors decided in a unanimous verdict that his lawsuits had been filed too late.
As the AI legal services industry heats up, Anthropic is launching its own suite of features designed to assist law firms.
Newest stories and posts filed under Robotics.
Initial robots will support workers on infrastructure projects.
The division transitioned from Aditya Ramesh's world simulation program.
The pipeline tests if LLMs can design scientific experiments.
OpenAI proposes taxes on AI profits, public wealth funds, and expanded safety nets to address job loss and inequality, blending redistribution with capitalism as policymakers debate AI’s economic impact.
When Zeus, a medical student living in a hilltop city in central Nigeria, returns to his studio apartment from a long day at the hospital, he turns on his ring light, straps his iPhone to his forehead, and starts recording himself. He raises his hands in front of him like a sleepwalker and puts a…
Google's new conversational audio AI is rolling out in search, Gemini, and developer tools today.
Newest stories and posts filed under Vision.
It powers a new macOS app for local audio transcription.
Bounding boxes and structured prompts helped accelerate model training.
Scorsese uses the model to generate pre-production storyboards
Codex Paper Pulls YouTube Thumbnails and Mixes Images with GPT-Image 2 - tracked by 1 author on X.
Training used 27,300 hours of real-robot and egocentric video.
Meme Video Pleads With Dario Amodei For Codex Over Claude Opus - tracked by 1 author on X.
Newest stories and posts filed under Coding.
The 12B variant features a novel, memory-efficient architecture.
MAI-Code-1-Flash will integrate exclusively inside GitHub Copilot.
She will support developers building with ChatGPT and Codex.
Narvas will support developers using OpenAI's API and ChatGPT
The golden age of Microsoft's Github Copilot appears to be at an end.
Critics argue frontier model training costs under $1 billion.