安全客September 2, 2026🇨🇳Translated from Chinese

Anthropic Fable 5.1 System Prompt Fully Leaked Hours After Launch Exposing 275000 Characters of Rules

Anthropic officially launched its next-generation flagship model Fable 5.1 on September 2, together with the specialized Mythos 5.1 variant intended for vetted security researchers and life-science professionals.

The release included impressive benchmark results: ARC-AGI-2 at 90.0 percent with a cost of 3.12 dollars per task, ARC-AGI-1 at 97.5 percent with a cost of 1.40 dollars per task, and an average inference cost reduction of roughly 32 percent compared with the previous generation.

Within hours, prominent jailbreak researcher Pliny the Liberator published a GitHub link containing the complete system prompt for Fable 5.1, totaling more than 275000 characters. The document reveals the full runtime assembly instructions, core behavioral logic, memory system, search and copyright rules, Artifacts and computer-use guidelines, plugin routing, and JSON schemas for all 46 built-in tools.

The official disclosure released the same day contained only about 27000 words, which Pliny the Liberator dismissed as merely ten percent of the actual instructions. The leaked material functions as a combined employee handbook, compliance manual, and tool reference rather than a simple persona statement.

Among the detailed rules are extremely granular copyright restrictions that prohibit reproduction of any protected songs, poems, or book excerpts after 1928, as well as any known characters, logos, or album covers in SVG, CSS, or HTML output, explicitly naming examples such as Sonic the Hedgehog and The Very Hungry Caterpillar.

The memory system automatically classifies and permanently excludes storage of minors' identity information, caste and immigration status, criminal records, psychological inferences, sexual history, and self-harm indicators, even when users voluntarily disclose such data.

Tool count expanded from 30 in July to 46, adding chart rendering, carousels, itinerary cards, link previews, and a read_conversation tool that can retrieve historical dialogue, effectively turning the model into a persistent workstation.

Behavioral constraints prohibit definitive statements about user psychology or motives, forbid medical role-play, and require a harm-reduction approach on drug-related queries that allows discussion of overdose risks but never dosage, timing, or recipes.

The same weights power both Fable 5.1 and Mythos 5.1, with safety boundaries applied only through differing prompt layers, creating a software fence around a model capable of high-risk tasks in cybersecurity and biology.

On launch day, Vals AI reported that Fable 5.1 solved the 370-year-old Cyphral Distich 64-digit cipher in 44 minutes using contextual reasoning rather than brute force, later cracking the author's additional 285-digit cipher as well.

Related articles

HabrAI Security

Fine-Tuning Prompt Injection Detector: Five Rounds, Four Failures and Gates Against Regression

AGIMA technical director Andrey Nepryakhin details the challenges of adapting an open-source GLiNER-based prompt injection detector for Russian corporate traffic. The system processes nearly one million requests monthly from eighty employees using agentic tools. Five fine-tuning rounds using LoRA adapters on microsoft/mdeberta-v3-base were conducted, yet only the second round reached production. Failures stemmed from regression on previously fixed attacks, imbalanced negative samples, and reliance on rule-based signals instead of the model. The team introduced cumulative corpora, person-based splits, and ablation checks against the base model to prevent silent rollbacks. A gradient mass rule limits any single phenomenon to 10-20 percent of training data to avoid precision or recall collapse.

BoletimSecAI Security

Secure AI-Assisted Development: Five Critical Practices for Vibe Coding

AI has become the default path for quickly turning ideas into working applications, yet most security flaws in these projects stem not from model errors but from developer assumptions. The AI simply implements what is requested, and security requirements are rarely included in prompts. Five key areas account for the majority of issues: explicitly defining what an application must not do, distinguishing authentication from authorization, reviewing AI-suggested dependencies, removing secrets from commit history, and validating business logic rules that automated scans cannot detect. Applications built this way are already attracting cybercriminals because the resulting vulnerabilities can be identified and exploited at scale. The HackerSec Pentest Platform is positioned as an accessible option for vibe coders seeking quality security testing before production deployment.

AntiMalwareAI Security

Selectel Launches Local AI Admin Agent aish in SELECTOS to Eliminate Cloud Data Risks

Selectel has introduced aish, a generative AI agent embedded directly into its SELECTOS server operating system. The solution allows system administrators to analyze incidents, review logs, and perform routine operations entirely on-premises without transmitting sensitive data to external cloud providers. Aish operates with a human-in-the-loop model, generating proposed commands and explanations that must be approved by an operator before execution. The primary goal is to support organizations bound by strict data-protection policies, including compliance with Russian Federal Law 152-FZ, by keeping all context within local infrastructure. SELECTOS is based on Debian and is distributed in ISO, QCOW2, and container formats for both cloud and dedicated servers. According to Kirill Dmitriev, Director of System Software at Selectel, the agent is intended to lower the entry barrier for Linux system administration while respecting restrictions on the use of foreign large language models.

HabrAI Security

Three-Phase Defense Model OGL-Mini Protects AI Agents from Prompt Injection and Modern LLM Threats

The article presents OGL-Mini, an open-source hybrid security model designed to defend AI agents, chatbots, and RAG systems against contemporary threats including prompt injection, system prompt leakage, and agentic attacks. It details real-world incidents from 2025-2026 involving Microsoft Copilot Studio, OpenAI Atlas, and Claude Code, showing how attackers bypass safety filters using structured formats and obfuscation. OGL-Mini employs a three-stage pipeline of heuristics, TF-IDF mini-classifier, and PII detection to intercept malicious inputs before they reach the LLM. The model was trained on over 110,000 examples covering OWASP LLM01 categories, agentic misuse, and modern obfuscation techniques. Available in TypeScript, Python, and Go, it runs efficiently on standard CPUs with low latency. The solution aims to address gaps in built-in LLM safeguards that remain vulnerable to techniques like Policy Puppetry.