{"id":35050,"date":"2026-07-16T22:23:38","date_gmt":"2026-07-16T22:23:38","guid":{"rendered":"https:\/\/www.adminbyrequest.com\/en\/?p=35050"},"modified":"2026-07-20T22:25:42","modified_gmt":"2026-07-20T22:25:42","slug":"jadepuffer-the-first-ransomware-attack-run-entirely-by-ai","status":"publish","type":"post","link":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai","title":{"rendered":"JadePuffer: The First Ransomware Attack Run Entirely by AI"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Researchers have documented a ransomware campaign run from start to finish by an AI agent, with no human at the keyboard. Sysdig&#8217;s Threat Research Team caught an operator they named JadePuffer breaking into a server, stealing credentials, moving to a second target, and encrypting and destroying a production database. A large language model made the decisions at every stage, in what appears to be the <a href=\"https:\/\/www.darkreading.com\/cyberattacks-data-breaches\/jadepuffer-first-complete-llm-driven-ransomware-attack\">first complete ransomware operation<\/a> driven end-to-end by a model.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The individual techniques were not novel. A model chaining them into a complete extortion operation on its own is what makes the case notable. It lowers the bar for who can run an attack like this, and it raises the stakes on any unpatched system exposed to the internet.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How the Attack Worked<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">JadePuffer gained entry through an internet-facing Langflow server. Langflow is an open-source framework for building LLM apps and agent workflows.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">These servers make appealing targets. They tend to sit exposed on the internet, and they often hold API keys and cloud credentials for the services they connect to.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The entry point was <a href=\"https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-3248\">CVE-2025-3248<\/a>, a missing-authentication flaw that lets an unauthenticated attacker run arbitrary Python on the host. It carries a <a href=\"https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-3248\">CVSS score of 9.8<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The flaw is not new. A patch shipped in early 2025, and the U.S. Cybersecurity and Infrastructure Security Agency <a href=\"https:\/\/www.cisa.gov\/known-exploited-vulnerabilities-catalog?field_cve=CVE-2025-3248\">added it to its Known Exploited Vulnerabilities catalog<\/a> on May 5, 2025. The server JadePuffer compromised had gone unpatched for more than a year.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once inside, the agent fingerprinted the host and swept the environment for secrets across several categories at once:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>LLM provider API keys (OpenAI, Anthropic, Gemini, and others)<\/li>\n\n\n\n<li>Cloud credentials, with specific coverage of Chinese providers like Alibaba, Tencent, and Huawei, plus AWS, GCP, and Azure<\/li>\n\n\n\n<li>Cryptocurrency wallets and seed phrases<\/li>\n\n\n\n<li>Database logins and configuration files<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">It then dumped the Langflow server&#8217;s own database and pulled credentials from an object store using a default login that had never been changed. Before moving on, it installed a scheduled task to beacon back to attacker infrastructure every 30 minutes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">From there it pivoted to its intended target: a separate internet-exposed server running a MySQL database and an Alibaba Nacos configuration service. It forged an admin account and checked whether it could break out of its container.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It then encrypted all 1,342 Nacos configuration items, dropped the originals, and left a Bitcoin ransom note behind. The encryption key was generated at random, printed to the screen once, and never saved or transmitted anywhere, which means the victim&#8217;s data is unrecoverable even with payment. Whether that was deliberate or a mistake by an autonomous system running without oversight is unclear, but the effect is the same: a destructive operation that paying cannot reverse.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-1-1.webp\" alt=\"\" class=\"wp-image-35052\" srcset=\"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-1-1.webp 1024w, https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-1-1-300x169.webp 300w, https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-1-1-768x432.webp 768w, https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-1-1-800x450.webp 800w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Why AI-Run Is Different From Automated<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Ransomware has relied on automation for years. Scripts and toolkits handle the repetitive work. JadePuffer stands apart in how the agent responded when things went wrong.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">At one point it tried to create a backdoor admin account and the login check failed. Thirty-one seconds later, with no human involved, it identified the likely cause, deleted the broken account, rebuilt it correctly, and logged in. A person reading the error, diagnosing it, writing a fix, and running it would take far longer than half a minute.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The pattern repeated throughout the intrusion. When a request returned data in an unexpected format, the next command parsed the new format. When a database operation failed on a technicality, the follow-up applied the correct workaround. Each fix matched the specific failure, which points to diagnosis rather than blind retries.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The agent&#8217;s code also narrated itself, filled with plain-language notes explaining why each step was happening and which targets were worth prioritizing. Human attackers rarely comment throwaway one-liners this way. LLM-generated code does it by default, and it was part of how researchers identified what they were looking at.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What This Means for Everyone Else<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The skill required to run an attack like this has dropped. Ransomware once meant having someone in the chain who understood credential theft, <a href=\"https:\/\/www.adminbyrequest.com\/en\/blogs\/beating-the-29-minute-clock-controls-that-slow-lateral-movement-down\" title=\"\">lateral movement<\/a>, and persistence well enough to connect them. JadePuffer suggests a model can now supply that expertise. When an agent handles the full sequence, an attacker no longer needs deep knowledge of any single step.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Old vulnerabilities also become more dangerous. JadePuffer&#8217;s downstream attack relied on a years-old Nacos authentication bypass and a default signing key that shipped unchanged. Agents make it nearly free to throw the entire back catalog of known flaws at a target, so every neglected, internet-facing system becomes a more attractive mark.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Closing the Gaps<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The defensive measures here are not exotic. Most of them address gaps that are already well understood:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Patch known-exploited vulnerabilities quickly, especially anything on the CISA catalog, and keep code-execution endpoints off the open internet.<\/li>\n\n\n\n<li>Keep API keys and cloud credentials out of the environments of web-facing servers, so a single compromise does not expose everything else.<\/li>\n\n\n\n<li>Change default credentials and signing keys wherever they ship. JadePuffer&#8217;s second stage ran entirely on defaults nobody had touched.<\/li>\n\n\n\n<li>Restrict administrative database accounts to trusted source IPs and never expose them directly.<\/li>\n\n\n\n<li>Apply egress controls so a compromised host cannot freely beacon out.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">JadePuffer forged an admin account on the Nacos server and moved through default admin logins nobody had locked down, doing it faster than any human operator could. Permanent admin access is a soft target for an attacker working at that speed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Admin By Request&#8217;s Endpoint Privilege Management takes that target off the board. It removes permanent local admin rights on endpoints and grants elevation only when it is needed, for only as long as it is needed, so there is no idle admin access sitting around for an attacker to pick up.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-2-1.webp\" alt=\"\" class=\"wp-image-35053\" srcset=\"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-2-1.webp 1024w, https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-2-1-300x169.webp 300w, https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-2-1-768x432.webp 768w, https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/inline-2-1-800x450.webp 800w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Where This Goes Next<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">JadePuffer is a single documented case, not a wave. The direction is still worth noting. As agentic tooling becomes easier to package and reuse, the first to adopt it will be operators who already know how to connect a model to offensive infrastructure. From there it spreads to less capable attackers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">JadePuffer used ordinary tradecraft driven by a model rather than a person. The defenses against it have not changed, but the urgency has, because the systems most organizations keep meaning to patch are now cheaper than ever for an attacker to find and exploit.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Ready to close a few of those doors? <a href=\"https:\/\/www.adminbyrequest.com\/en\/book-a-live-demo\" title=\"\">Book a free demo<\/a> or sign up for our <a href=\"https:\/\/www.adminbyrequest.com\/en\/freeplandownload\" title=\"\">lifetime free plan<\/a>, which gives you the full feature set for up to 25 endpoints, free, for as long as you want.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.<\/p>\n","protected":false},"author":16,"featured_media":35054,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36],"tags":[580,44,83,148,607],"ppma_author":[428],"class_list":["post-35050","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blogs","tag-agentic-ai","tag-ai","tag-cyber-attack","tag-cybersecurity","tag-jadepuffer","entry","has-media"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Pocholo Legaspi\"\/>\n\t<meta name=\"keywords\" content=\"agentic ai,ai,cyber attack,cybersecurity,jadepuffer\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Admin By Request \u00bb Local Admin Rights, Managed.\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request\" \/>\n\t\t<meta property=\"og:description\" content=\"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2023\/05\/Circle-Tick-24.svg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2023\/05\/Circle-Tick-24.svg\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-07-16T22:23:38+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-20T22:25:42+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/adminbyrequest\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@AdminByRequest\" \/>\n\t\t<meta name=\"twitter:title\" content=\"JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request\" \/>\n\t\t<meta name=\"twitter:description\" content=\"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@AdminByRequest\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2023\/05\/Circle-Tick-24.svg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#blogposting\",\"name\":\"JadePuffer: The First Ransomware Attack Run Entirely by AI \\u00bb Admin By Request\",\"headline\":\"JadePuffer: The First Ransomware Attack Run Entirely by AI\",\"author\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/author\\\/pocholo-editor#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/main-1.webp\",\"width\":1302,\"height\":732,\"caption\":\"Humanoid black robot seated at a desk with a monitor, keyboard, and papers against a dark, circuit\\u2011themed backdrop.\"},\"datePublished\":\"2026-07-16T22:23:38+00:00\",\"dateModified\":\"2026-07-20T22:25:42+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#webpage\"},\"articleSection\":\"Blogs, Agentic AI, AI, Cyber Attack, Cybersecurity, JadePuffer, Pocholo Legaspi\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/category\\\/blogs#listItem\",\"name\":\"Blogs\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/category\\\/blogs#listItem\",\"position\":2,\"name\":\"Blogs\",\"item\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/category\\\/blogs\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#listItem\",\"name\":\"JadePuffer: The First Ransomware Attack Run Entirely by AI\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#listItem\",\"position\":3,\"name\":\"JadePuffer: The First Ransomware Attack Run Entirely by AI\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/category\\\/blogs#listItem\",\"name\":\"Blogs\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/#organization\",\"name\":\"Admin By Request\",\"description\":\"Local Admin Rights, Managed.\",\"url\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/\",\"telephone\":\"+12622994600\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/Circle-Tick-24.svg\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\\\/#organizationLogo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/adminbyrequest\",\"https:\\\/\\\/twitter.com\\\/AdminByRequest\",\"https:\\\/\\\/www.instagram.com\\\/AdminByRequest\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@adminbyrequest\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCwq1wlbT9m_z3YH-EPaZqKw\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/adminbyrequest\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/author\\\/pocholo-editor#author\",\"url\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/author\\\/pocholo-editor\",\"name\":\"Pocholo Legaspi\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#webpage\",\"url\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\",\"name\":\"JadePuffer: The First Ransomware Attack Run Entirely by AI \\u00bb Admin By Request\",\"description\":\"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/author\\\/pocholo-editor#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/author\\\/pocholo-editor#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/main-1.webp\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\\\/#mainImage\",\"width\":1302,\"height\":732,\"caption\":\"Humanoid black robot seated at a desk with a monitor, keyboard, and papers against a dark, circuit\\u2011themed backdrop.\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/blogs\\\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#mainImage\"},\"datePublished\":\"2026-07-16T22:23:38+00:00\",\"dateModified\":\"2026-07-20T22:25:42+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/\",\"name\":\"Admin By Request\",\"alternateName\":\"ABR\",\"description\":\"Local Admin Rights, Managed.\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.adminbyrequest.com\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request<\/title>\n\n","aioseo_head_json":{"title":"JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request","description":"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.","canonical_url":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"agentic ai,ai,cyber attack,cybersecurity,jadepuffer","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#blogposting","name":"JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request","headline":"JadePuffer: The First Ransomware Attack Run Entirely by AI","author":{"@id":"https:\/\/www.adminbyrequest.com\/en\/author\/pocholo-editor#author"},"publisher":{"@id":"https:\/\/www.adminbyrequest.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/main-1.webp","width":1302,"height":732,"caption":"Humanoid black robot seated at a desk with a monitor, keyboard, and papers against a dark, circuit\u2011themed backdrop."},"datePublished":"2026-07-16T22:23:38+00:00","dateModified":"2026-07-20T22:25:42+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#webpage"},"isPartOf":{"@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#webpage"},"articleSection":"Blogs, Agentic AI, AI, Cyber Attack, Cybersecurity, JadePuffer, Pocholo Legaspi"},{"@type":"BreadcrumbList","@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.adminbyrequest.com\/en#listItem","position":1,"name":"Home","item":"https:\/\/www.adminbyrequest.com\/en","nextItem":{"@type":"ListItem","@id":"https:\/\/www.adminbyrequest.com\/en\/category\/blogs#listItem","name":"Blogs"}},{"@type":"ListItem","@id":"https:\/\/www.adminbyrequest.com\/en\/category\/blogs#listItem","position":2,"name":"Blogs","item":"https:\/\/www.adminbyrequest.com\/en\/category\/blogs","nextItem":{"@type":"ListItem","@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#listItem","name":"JadePuffer: The First Ransomware Attack Run Entirely by AI"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.adminbyrequest.com\/en#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#listItem","position":3,"name":"JadePuffer: The First Ransomware Attack Run Entirely by AI","previousItem":{"@type":"ListItem","@id":"https:\/\/www.adminbyrequest.com\/en\/category\/blogs#listItem","name":"Blogs"}}]},{"@type":"Organization","@id":"https:\/\/www.adminbyrequest.com\/en\/#organization","name":"Admin By Request","description":"Local Admin Rights, Managed.","url":"https:\/\/www.adminbyrequest.com\/en\/","telephone":"+12622994600","logo":{"@type":"ImageObject","url":"\/wp-content\/uploads\/2023\/05\/Circle-Tick-24.svg","@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\/#organizationLogo"},"image":{"@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/adminbyrequest","https:\/\/twitter.com\/AdminByRequest","https:\/\/www.instagram.com\/AdminByRequest\/","https:\/\/www.tiktok.com\/@adminbyrequest","https:\/\/www.youtube.com\/channel\/UCwq1wlbT9m_z3YH-EPaZqKw","https:\/\/www.linkedin.com\/company\/adminbyrequest\/"]},{"@type":"Person","@id":"https:\/\/www.adminbyrequest.com\/en\/author\/pocholo-editor#author","url":"https:\/\/www.adminbyrequest.com\/en\/author\/pocholo-editor","name":"Pocholo Legaspi"},{"@type":"WebPage","@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#webpage","url":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai","name":"JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request","description":"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.adminbyrequest.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#breadcrumblist"},"author":{"@id":"https:\/\/www.adminbyrequest.com\/en\/author\/pocholo-editor#author"},"creator":{"@id":"https:\/\/www.adminbyrequest.com\/en\/author\/pocholo-editor#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2026\/07\/main-1.webp","@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai\/#mainImage","width":1302,"height":732,"caption":"Humanoid black robot seated at a desk with a monitor, keyboard, and papers against a dark, circuit\u2011themed backdrop."},"primaryImageOfPage":{"@id":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai#mainImage"},"datePublished":"2026-07-16T22:23:38+00:00","dateModified":"2026-07-20T22:25:42+00:00"},{"@type":"WebSite","@id":"https:\/\/www.adminbyrequest.com\/en\/#website","url":"https:\/\/www.adminbyrequest.com\/en\/","name":"Admin By Request","alternateName":"ABR","description":"Local Admin Rights, Managed.","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.adminbyrequest.com\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Admin By Request \u00bb Local Admin Rights, Managed.","og:type":"article","og:title":"JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request","og:description":"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.","og:url":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai","og:image":"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2023\/05\/Circle-Tick-24.svg","og:image:secure_url":"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2023\/05\/Circle-Tick-24.svg","article:published_time":"2026-07-16T22:23:38+00:00","article:modified_time":"2026-07-20T22:25:42+00:00","article:publisher":"https:\/\/www.facebook.com\/adminbyrequest","twitter:card":"summary_large_image","twitter:site":"@AdminByRequest","twitter:title":"JadePuffer: The First Ransomware Attack Run Entirely by AI \u00bb Admin By Request","twitter:description":"JadePuffer is the first ransomware attack run end to end by an AI agent, with no human operator. Its entry point was a critical flaw left unpatched for a year.","twitter:creator":"@AdminByRequest","twitter:image":"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2023\/05\/Circle-Tick-24.svg"},"aioseo_meta_data":{"post_id":"35050","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-07-20 22:26:22","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-07-16 20:53:13","updated":"2026-07-20 22:56:15"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.adminbyrequest.com\/en\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.adminbyrequest.com\/en\/category\/blogs\" title=\"Blogs\">Blogs<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\tJadePuffer: The First Ransomware Attack Run Entirely by AI\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.adminbyrequest.com\/en"},{"label":"Blogs","link":"https:\/\/www.adminbyrequest.com\/en\/category\/blogs"},{"label":"JadePuffer: The First Ransomware Attack Run Entirely by AI","link":"https:\/\/www.adminbyrequest.com\/en\/blogs\/jadepuffer-the-first-ransomware-attack-run-entirely-by-ai"}],"authors":[{"term_id":428,"user_id":16,"is_guest":0,"slug":"pocholo-editor","display_name":"Pocholo Legaspi","avatar_url":{"url":"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2025\/04\/Pocholo-Headshot.jpg","url2x":"https:\/\/www.adminbyrequest.com\/en\/wp-content\/uploads\/2025\/04\/Pocholo-Headshot.jpg"},"0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/posts\/35050","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/comments?post=35050"}],"version-history":[{"count":3,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/posts\/35050\/revisions"}],"predecessor-version":[{"id":35079,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/posts\/35050\/revisions\/35079"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/media\/35054"}],"wp:attachment":[{"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/media?parent=35050"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/categories?post=35050"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/tags?post=35050"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.adminbyrequest.com\/en\/wp-json\/wp\/v2\/ppma_author?post=35050"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}