HabrJuly 30, 2026🇷🇺Translated from Russian

Star in the Machine Fog: How AI Became Weapon, Target and Voice in the Browser

Rostelecom AppSec engineer Yuri Tumanov, together with Igor Korkin from Positive Technologies and Oksana Dokuchaeva from FMBA Russia, published a detailed analysis of how generative AI is reshaping both offensive and defensive operations in cybersecurity.

The authors describe five concurrent roles of AI: accelerator of attacks, compromised trusted assistant, leakage channel, protective shield, and primary target. They emphasize that AI does not replace phishing, malware or poor decisions but lowers the cost of iteration, allowing attackers to generate context-aware lures and code at machine speed.

AI as Attack Accelerator

Generative models produce hundreds of tailored phishing variants, translate messages, adjust tone and embed project-specific details harvested from prior breaches. Defenders are advised to move beyond grammar checks toward independent confirmation channels, sandbox detonation and clear user reporting workflows.

Compromised Assistant and Data Leakage

When an AI agent runs inside a browser or desktop client, a compromised endpoint gives attackers access to the full authorized session, clipboard, connected documents and tool permissions. The article warns against storing secrets in chat history or retrieval corpora and recommends strict connector scoping, device posture verification and immutable audit logs of every tool call.

AI as Shield and Direct Target

While models can triage alerts and draft investigations, any high-risk action must pass deterministic policy engines and human approval. On the offensive side, prompt injection, poisoned retrieval documents and excessive agent permissions create new attack surfaces that require provenance tracking, schema validation of model output and least-privilege tool scopes.

The authors conclude that the most effective controls remain mundane: separate verification of rights, comprehensive logging and explicit confirmation buttons before irreversible operations.

Related articles

HabrAI Security

Local LLM Contract Analyzer Hit by Prompt Injection Despite Anti-Leak Instructions

A developer running a local nine-billion-parameter LLM for contract risk analysis discovered two suspicious log entries overnight. One contained repetitive garbage text, while the second embedded a classic prompt injection inside what appeared to be a legitimate contract: an instruction to ignore prior rules and output the full system prompt. The model partially complied by generating a fabricated risk entry titled SYSTEM PROMPT LEAK that described its own instructions, all while respecting the required JSON schema. Multiple defense layers were implemented, including input validation, regex-based injection phrase detection, an explicit rule inside the system prompt, and an output filter that replaces suspected leaks. Testing later revealed that the model still followed a hidden instruction to silently omit a specific contract clause, demonstrating that prompt-level rules only shift probabilities rather than enforce hard boundaries. The incident highlights that any document fed to an LLM must be treated as potentially hostile input.

SecuritylabAI Security

GPT-6 Astra Shows Strong Tool Use and Math Results but Trails in Text Quality Tests

OpenAI released GPT-6 Astra on 3 September 2026 with capabilities for long-horizon tasks involving code, documents and external tools. Independent benchmarks from Artificial Analysis, Epoch AI and others reveal a mixed picture: the model leads in Epoch Capabilities Index and certain coding agent tests yet falls behind Claude Fable 5.1 in text generation and some professional document tasks. Astra solved two previously open problems on FrontierMath Erdős and reached 99.9 percent on ARC-AGI-3 when paired with a state-preserving adapter. The model was rated Critical for cyber capabilities after scoring 100 percent on ExploitBench and discovering two previously unknown vulnerabilities. Pricing starts at $10 per million input tokens, 2.5 times higher than GPT-5.6 Sol, while real-world costs vary sharply depending on task length and retries.

HabrAI Security

Stop Asking If AI Agent Skills Are Safe — Focus on Capability Disclosure Instead

A new approach called capability disclosure is proposed for evaluating skills used by AI agents, replacing unreliable safety badges. The shift comes after documented cases where malicious SKILL.md files survived system reinstalls through backups and executed data theft via prompt injection. Snyk's ToxicSkills analysis of 3984 public skills found 36.8% with security issues and 13.4% critical, including 76 confirmed malicious payloads. The skill-xray tool provides structural scanning and tiered reporting from T0 (inert text) to T4 (opaque runtime code loading) without issuing safety verdicts. Real-world examples include CVE-2025-6514 affecting mcp-remote with over 437,000 installations. The method emphasizes revealing what a skill can access rather than promising it is harmless.

AntiMalwareAI Security

OpenAI GPT-6 Astra Deploys Multi-Agent Parallel Processing, Increasing Local CPU Load and Security Risks

Early users of GPT-6 Astra have observed the model distributing complex tasks across multiple specialized agents that plan, solve, test code, verify results, and iterate after failures. This multi-agent approach enables faster handling of multi-step workflows compared to sequential chatbots. OpenAI states that Astra can control computers, operate browsers and applications, and install or test software, though it has not officially confirmed a native multi-agent architecture. Main computations run in the cloud, but agent tools can execute on user devices or corporate servers, leading to noticeable processor load when multiple agents compile code, launch browsers, run tests, and operate containers simultaneously. Corporate environments face added complexity as each agent requires virtual machines, sandboxes, internal data access, and careful environment cleanup. The increased autonomy has prompted OpenAI to strengthen monitoring of Astra actions and permission boundaries for subscribers of ChatGPT and enterprise clients.