惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
I
InfoQ
人人都是产品经理
人人都是产品经理
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
美团技术团队
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
Last Week in AI
Last Week in AI
博客园_首页
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
云风的 BLOG
云风的 BLOG
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
G
Google Developers Blog
博客园 - 叶小钗
博客园 - Franky

Artificial Intelligence in Plain English - Medium

OpenAI launched GPT-5.5 - it’s the death of digital hand-holding The Future of Agentic AI is Not One Genius Model, it is a Team How AI Development Optimizes Smart Parking Management Systems The FAST Framework: A Practical Responsible AI Checklist for Data Scientists Why is Cloud Migration Consulting Important for Businesses? My Team Caught Me Using AI to Merge PRs. The Code Was Fine. The Trust Wasn’t. SQL Tricks Every Data Scientist Should Know I Stopped Chasing AI Hype and Started Building Systems That Actually Worked GPT-5.5: The Model That Thinks Ahead Mastering AI Storytelling: Crafting Prompts for Captivating Narratives Why So Many Businesses Are Switching to Clawdbot for AI Automation The Growing Dependence on AI Tools — And Why It’s Risky How to Cut Claude Code Costs by At least 2 to 3x How The Google Antigravity Agent Hallucinated NSFW Adult Websites? “Vercel Hack Exposed: How a Simple AI Tool Led to a $2M Data Breach” The Vercel Hack: How One AI Tool Cracked Open the Internet’s Deployment Stack AI Chatbot Development Services for Enterprise Data-Sensitive Processes What AI Agent Developers Should Consider When Designing Agents for High-volume Environments My ChatGPT Responds Better Than Yours, Here is the 3-Step Guide How To Create A Custom AI Chatbot, Train & Deploy It In 48 Hrs Learning in the Age of Intelligent Systems: Why Human Understanding Still Matters Everyone Is Learning AI, So Why Will Most Still Fail? AI Is Learning Faster Than You Think What If Your Next Best Friend Is a Robot That Even Feels Real? OpenAI Quietly Broke the Way You Build AI Apps The AI Superpower Standoff: Why the OpenAI vs. Anthropic War Looks Exactly Like the US vs. Iran The LLM Tools That Actually Matter in Production (Not LangChain, Not the OpenAI SDK) The Most Dangerous Use of Artificial Intelligence Yet! | AI Porn Why Your AI Chatbot Gives Vague Answers (And Why That Should Matter to You) How Do You Prove You’re You, After AI Has Evolved?
The Enemy in Your Terminal: Why OpenClaw was the Perfect ...
Syed Ahmer S · 2026-04-27 · via Artificial Intelligence in Plain English - Medium
You didn’t get hacked because you clicked a suspicious link in a spam email. You got hacked because you were trying to be productive. Think about your workflow right now. You pull a repo, install dependencies, spin up an AI coding assistant to handle the boilerplate, and go make coffee. You assume you are safe because you are behind a firewall. You assume localhost is a fortress. It isn’t. It’s an open door. The OpenClaw breach earlier this year proved that the most dangerous thing in your development environment isn’t a virus. It’s the agent you gave sudo access to. Let's strip away the hype and look at the autopsy of a disaster. Because while you were sleeping, your "assistant" was busy handing your SSH keys to a machine that thinks a thousand times faster than you do. The Foundation of Blind Trust We have a chronic habit in software engineering of trusting the tools that make our lives easier. We don’t read the source code; we just look at the GitHub stars. Look at the historical precedent. This didn’t start with AI. Remember the SolarWinds hack ? Attackers didn’t break into government networks directly. They broke into the IT monitoring software everyone trusted. They poisoned the well. Then came the XZ Utils backdoor in early 2024. A malicious actor spent years building trust in the open-source community just to slip a microscopic vulnerability into an archiving library that would have compromised SSH globally. We only caught it because a single developer noticed a 500-millisecond delay in his CPU processing. A fraction of a second was the only thing standing between us and total infrastructure collapse. Add the AnyDesk production breach around the same time. The very tool designed to provide secure remote access was compromised at the source code level. We keep inviting the enemy inside the gates. But OpenClaw was different. OpenClaw wasn’t just a compromised library. It was an active, autonomous participant. The “ClawJacked” Vulnerability (CVE-2026–25253) Here it is now where it gets technical, and where the negligence becomes obvious. OpenClaw was designed as a local AI agent to orchestrate your codebase. To do this, it ran a local WebSocket server on port localhost:8888. The developers built it with a fatal assumption: "If the request is coming from localhost, it must be the user. It is inherently safe." This is lazy engineering. They ignored a fundamental reality of modern web architecture: Cross-Site WebSocket Hijacking (CSWSH). If you, the developer, have OpenClaw running in your terminal, and you open a browser tab to read an article on a compromised website, the JavaScript on that malicious site can send a payload directly to ws://localhost:8888. There was no origin validation. There was no rate limiting. To see how reckless this is, look back at the Ray AI framework vulnerability (CVE-2023–48022) . Thousands of companies deployed Ray to scale AI workloads, but the dashboard lacked authentication by default. Hackers simply scanned for exposed ports, dropped cryptominers, and stole credentials. Sound familiar? With OpenClaw, the attackers didn’t even need to scan the internet. They just waited for you to open a browser tab. Speed Kills: The 100-Millisecond Heist Once the connection was made, the scale of the attack shifted. When a human hacks a system, they pause. They run ls. They read the output. They figure out where they are. An attack agent doesn’t pause. In the time it took you to blink, the malicious script brute-forced the local agent’s weak default API key. Because there was no rate limit, it tried five hundred combinations in a quarter of a second. Once authenticated, it didn’t download a heavy virus. It just used the permissions you already gave OpenClaw. It instructed your AI assistant to run cat ~/.ssh/id_rsa. It scraped your .env files for AWS keys. It zipped them and sent them via an encrypted outbound request to a dead-drop server. All of this happened in roughly 150 milliseconds. This mirrors the Hugging Face token leaks of 2023 and 2024 , where developers routinely left API keys exposed in public spaces, and automated bots scraped them instantly. But with OpenClaw, you didn’t leave the keys in public. The bot reached into your private machine and took them. The 2026 Reality Check We are building systems we barely understand and giving them the keys to the kingdom. We treat AI agents like interns, forgetting that an intern doesn’t have the ability to execute five thousand lines of shell commands in a second. If you are running local agents without strict, containerized boundaries, you are compromised. It is not a matter of if, but when. Stop relying on default configurations. Stop assuming localhost is a safe harbor. Implement Zero Trust on your own machine. Containerize your agents, require explicit biometric or hardware-token approval for terminal executions, and monitor your outbound traffic. The Trojan Horse worked because the Trojans thought it was a gift. Stop accepting gifts without checking what’s inside. You can find me across the web here: ✍️ Read more on Medium: @syedahmershah 💬 Join the discussion on Dev.to: @syedahmershah 🧠 Deep dives on Hashnode: @syedahmershah 💻 Check my code on GitHub: @ahmershahdev 🔗 Connect professionally on LinkedIn: Syed Ahmer Shah 🧭 All my links in one place on Beacons: Syed Ahmer Shah 🌐 Visit my Portfolio Website: ahmershah.dev You can also find my verified Google Business profile here . The Enemy in Your Terminal: Why OpenClaw was the Perfect Trojan Horse was originally published in Artificial Intelligence in Plain English on Medium, where people are continuing the conversation by highlighting and responding to this story.