HabrJuly 23, 2026🇷🇺Translated from Russian

AI in Cybersecurity: Where It Delivers Real Value and Where It Remains Marketing Hype

The cybersecurity industry faces a severe talent shortage, making it increasingly difficult to hire experienced SOC analysts, incident responders, and threat hunters. At the same time, businesses seek greater efficiency and lower costs, while vendors promote their products as highly innovative. These pressures create unrealistic expectations that simply purchasing an AI-labeled solution will resolve major security problems.

What Counts as AI in Information Security Today

Vendors often blur distinctions between technologies by labeling everything as AI. Classical correlation rules in SIEM systems trigger on predefined conditions, such as a user logging in at night, gaining administrative rights, and exfiltrating data. These contain no artificial intelligence, only engineering. Machine learning systems build behavioral models from historical data and flag deviations, yet they require extensive calibration and still produce high volumes of false positives. Generative AI and large language models can draft queries, summarize incidents, and explain detection rules, but they lack business context.

Where Marketing Claims Outpace Reality

One common promise is that AI will automatically discover unknown attacks. Solutions such as UEBA, NDR, and XDR do detect anomalies, for example when an accountant suddenly accesses servers via VPN at 3 a.m. and runs PowerShell. However, the system identifies deviation, not confirmed malice, so analysts must still validate each alert. Another claim is fully automatic investigation of complex incidents. While tools can assemble timelines, they cannot assess which systems are business-critical or predict operational impact without human input.

Assertions that AI will replace SOC analysts also fall short. Modern platforms can group events, suppress some false positives, and generate report drafts, yet they cannot answer questions about client impact, backup availability, or financial consequences. Similarly, generative models can produce plausible security strategies, but they ignore budget limits, corporate culture, and specific regulatory constraints, resulting in generic templates rather than actionable plans.

Areas Where AI Delivers Measurable Value

In anti-fraud systems used by financial institutions such as Alfa-Bank, machine learning has moved beyond simple threshold rules. Modern models analyze click patterns, typing speed, device behavior, and transaction context simultaneously. They can block a transaction made by a pensioner in one city minutes after a high-value purchase from a newly installed app in another country. Behavioral analytics platforms also excel at spotting insider threats by comparing current activity against an individual’s historical profile.

Generative AI assists analysts by translating complex detection logic into plain language and automatically building queries against large datasets. Correlation engines in contemporary SIEM and XDR platforms process millions of daily events and surface relationships spanning days or weeks that no human could review manually.

How to Separate Real AI from Marketing Labels

Organizations should demand concrete metrics from vendors, including false-positive rates, time required to validate each alert, and the percentage of incidents actually detected. Understanding which underlying technology—rules, machine learning, or generative models—is being used remains essential before committing significant budgets to solutions that may deliver only conventional correlation under a new label.

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.