HabrAugust 4, 2026🇷🇺Translated from Russian

OWASP LLM10 Unbounded Consumption: Testing YandexGPT Lite 5 and GigaChat Lite on Resource-Intensive Prompts

OWASP LLM10: Unbounded Consumption has emerged as a critical threat category in the OWASP Top 10 for LLM Applications. Unlike classic prompt injection or data leakage attacks, this class targets computational resources by forcing models to execute disproportionately expensive tasks.

Large language models now serve as primary interfaces in corporate assistants, RAG applications, AI agents, code generation, and document automation. As adoption grows, attackers increasingly craft single prompts that maximize token usage, context window pressure, and inference cost rather than stealing data or bypassing filters.

The research tested two leading Russian models — YandexGPT Lite 5 and GigaChat Lite — using the AI Red Team platform containing over 200 resource-consumption prompts. Attack classes included Quine-like recursion, fractal nesting, computational explosion, semantic superposition, multi-agent simulation, and glitch-token abuse.

YandexGPT Lite 5 employed multiple strategies: strict 512-token output limits, explicit refusals with scope reduction suggestions, and semantic degradation that preserved usefulness while avoiding full materialization of repetitive or exponential content. In several cases the model recognized excessive scale before expensive generation began.

GigaChat Lite consistently attempted to reduce task scope rather than refuse outright. It answered questions about calculating pi by explaining the method instead of emitting millions of digits and handled large graph problems by describing algorithms rather than enumerating all Hamiltonian cycles.

Both models demonstrated graceful degradation that limits resource expenditure while retaining informative value. The study was conducted with support from the Foundation for Assistance to Innovations and provides concrete prompt examples solely for research and defensive development purposes.

Related articles

HabrAI Security

Deepfakes Turn Job Interviews into Cyberattack Vectors Targeting IT Candidates and Recruiters

Deepfake technology and malicious test assignments are increasingly used during IT hiring processes to conduct industrial espionage or deploy malware. Attackers impersonate recruiters or candidates, sending infected GitHub repositories or npm packages that install backdoors stealing credentials and enabling remote access. Groups such as Lazarus and the dedicated Contagious Interview collective have run campaigns against chemical and IT firms, while individual cases like the Smello Python developer incident show how prepare scripts in package.json can trigger hidden payloads. Gartner predicts that by 2028 one in four job applicants could be fake, creating risks beyond bad hires including data theft and financial loss. Defenses include isolated virtual machines for test tasks, profile verification by companies like Socure, and interview techniques such as the GOTCHA movement challenges or corneal reflection probes developed by universities. Major firms including Cisco, McKinsey, and Google are returning to in-person interviews as a reliable countermeasure. The rapid evolution of deepfake quality tracked by Unit 42 means layered verification combining technical, procedural, and human checks is now essential.

HabrAI Security

Agent-Ops 0.4.0 Released: Methodology for Secure Human-AI Collaboration in IT Operations

Sergey Zhitinsky, founder of Git in Sky, has published the public normative candidate for Agent-Ops 0.4.0, an open industry methodology governing how engineers and AI agents jointly handle IT infrastructure tasks. The framework keeps humans firmly in the decision-making loop while using deterministic programs for data collection and approved changes. It addresses risks such as prompt injection through processed data, unverified model outputs, and unclear accountability when AI recommendations lead to incidents. The methodology divides work across eight explicit steps and three separate planes: data, governance, and independent verification performed by a Guardian role. Two additional companies have joined as maintainers following agreements at the IT Elements 2026 conference, turning the project into a multi-organization effort. Contributors are invited to help refine contracts, schemas, and operational scenarios through GitHub and GitVerse.

HabrAI Security

ProxyKey MCP: Securing API Access for AI Agents Without Exposing Credentials

ProxyKey has released an MCP server that allows AI coding agents such as Claude Code and Cursor to manage API credentials without ever reading the actual secret values. The solution addresses the risk that any key visible to an agent becomes compromised through logging, tracing, or prompt injection. Real provider keys are stored encrypted with AES-256-GCM and never returned by any API endpoint after initial entry. Agents instead receive limited virtual passes that support IP binding, rate limits, TTL, and detailed request logging. A pending-secret workflow lets agents prepare services before the real token exists, with the human entering the secret only through a web panel. The approach deliberately restricts the MCP tool contract so no operation can read or return secret values.

HabrAI Security

Shadow AI in CI/CD: Why AI Agents Must Be Modeled as Security Threats

A new analysis from the CNCF highlights the growing risks of Shadow AI within continuous integration and continuous deployment pipelines. The report argues that AI agents should be treated as potential threats rather than simple productivity tools. Starting from a developer's laptop and extending to Kubernetes clusters, these agents can introduce unauthorized access paths and data exposure risks. Security teams are urged to incorporate AI agent behavior into formal threat modeling exercises. The discussion emphasizes the need for visibility and control over autonomous AI components operating in production environments.