BoletimSecAugust 18, 2026🇵🇹Translated from Portuguese

Cybercriminals Deploy Advanced AI for Continuous Automated Reconnaissance and Exploitation at Scale

Advanced AI models are enabling cybercriminal groups to conduct continuous, automated attacks against organizations across all industries. These systems keep reconnaissance running without interruption, mapping domains, exposed services, and infrastructure changes at a speed no human team could maintain over consecutive weeks.

The automated searches focus on two contrasting types of weak targets. On one side are legacy systems that have remained misconfigured for years, carrying outdated software versions and forgotten permissions. On the other are newly built applications created through Vibe Coding, which move into production within days without any security assessment. Both profiles share the same fundamental weakness: neither was designed with an attacker’s perspective in mind.

What has truly changed is the automation of the entire attack pipeline. Reconnaissance, vulnerability discovery, validation, and exploitation are now performed by AI agents that operate with minimal human supervision. Tasks that once required a specialized team dedicated to a single target now run simultaneously against thousands of targets, with near-zero marginal cost for each additional operation.

The economics of cybercrime have reorganized around this capability. As the cost per operation drops and success rates rise, the sector is generating record revenues that in turn finance even more advanced tools. The cycle attracts new operators who require little technical knowledge, only access to ready-made platforms.

The interval between placing an application into production and its discovery by attackers has compressed to mere hours. While criminal operations run continuously and automatically, most organizations continue to treat security as a project with a defined start and end date. This difference in operational tempo currently represents the greatest advantage held by cybercriminals.

Related articles

HabrAI Security

Study Finds Iterative AI Code Generation Accumulates Security Vulnerabilities Over Multiple Iterations

A 2025 IEEE-ISTAS 2025 research paper titled Security Degradation in Iterative AI Code Generation: A Systematic Analysis of the Paradox examined how repeated prompting of large language models leads to worsening code security. Researchers started with 10 secure code samples in C and Java, then applied four prompting strategies across 10 iterations each, generating 400 code samples that were analyzed with both manual review and automated scanners. The study found the strongest correlation between rising code complexity and vulnerability count, with 158 vulnerabilities emerging from feature-addition prompts and only 38 from explicit security-improvement requests. Even when asked to fix issues, GPT-4o frequently introduced new, subtler flaws such as timing side-channels, SQL injection risks, and use-after-free errors while addressing obvious problems. The authors recommend mandatory human review after every few iterations and greater use of SAST tools, noting that the illusion of progress can mask accumulating weaknesses. Limitations include testing only GPT-4o and the absence of human corrections during the iterative process.

安全客AI Security

Ruishu Information Warns Machine Traffic Now Dominates Internet as AI Agents Surge

Ruishu Information has released its 2026 Automation Threat Report covering data from early 2025 through Q2 2026. The report shows bots accounting for 68 percent of total internet traffic, with malicious bots making up 55 percent of that volume. Human traffic has fallen to just 22 percent while AI Agent-driven requests have grown from under 1 percent to 8-12 percent. LLM and AI Agent requests have already exceeded 450 billion, marking more than 400 percent year-over-year growth. The report introduces a new classification of non-human traffic into traditional bots, AI-enhanced bots, and autonomous AI Agents, along with an L1-L5 threat framework. It also expands documented attack scenarios from nine to thirteen, adding LLM application attacks, agent supply-chain attacks, identity hijacking, and autonomous AI-orchestrated attacks.

安全客AI Security

360 Launches nanoWork Enterprise Edition Channel Ecosystem with Native Security for AI Agents

On August 17, 360 held its nanoWork Enterprise Edition partner recruitment launch event, gathering over 200 channel partners from across China. The event marks the first major channel gathering since the product's official release on July 28. 360 founder Zhou Hongyi emphasized that AI is moving from answering questions to completing tasks, requiring robust security foundations, channel networks, and service systems. General Manager Wang Yi highlighted the low enterprise AI adoption rate of around 18% and positioned nanoWork as a secure, enterprise-grade AI agent platform built on 20 years of 360 security expertise. The company unveiled a three-dimensional partner architecture, four revenue models, and five empowerment systems to enable lightweight partner entry into the market. With a 1,000+ FDE engineer network and the AikerWorld community, nanoWork aims to deliver on-site陪跑 and service packages to bridge the last mile of AI deployment.

HabrAI Security

Reversing MD5 Hash Function from 2500-Layer Neural Network in Jane Street CTF Puzzle

A Jane Street machine learning puzzle challenged participants to reverse-engineer a PyTorch model containing 2500 layers and recover an MD5 computation solely from its integer weights. The network output 0 for nearly all inputs, forcing solvers to use mechanistic interpretability instead of gradient-based search. Alex, a graduating student, identified that the final layers performed equality checks on 16-byte values using ReLU activations and crafted linear programming and SAT reductions to simplify the model from two million nodes to 75 thousand. Further analysis revealed the core computation consisted of 32 identical MD5 rounds, with an unintended bug in length encoding for inputs exceeding 32 bytes. The hidden target hash was deliberately chosen to be brute-forceable once the algorithm was identified, and the correct input turned out to be two common English words separated by a space. The exercise demonstrated both the feasibility and the extreme difficulty of extracting algorithmic behavior from large, non-differentiable neural networks.