安全客August 18, 2026🇨🇳Translated from Chinese

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

Ruishu Information has published the 2026 Automation Threat Report, revealing that non-human traffic now constitutes the majority of internet activity. According to the findings, bots accounted for approximately 68 percent of overall traffic between early 2025 and Q2 2026, with malicious bots representing 55 percent of that share. Human-driven access has dropped to roughly 22 percent, while AI Agent-generated traffic has risen rapidly from less than 1 percent to between 8 and 12 percent.

Requests originating from LLMs and AI Agents have surpassed 450 billion, reflecting more than 400 percent year-over-year growth. Agent browsers alone now represent 9.7 percent of AI Agent traffic and recorded more than an eightfold quarter-over-quarter increase, making them the fastest-growing segment. The report concludes that the internet has entered a new phase in which machines are no longer mere participants but primary users.

From Traditional Bots to Autonomous AI Agents

The report redefines non-human traffic into three categories: traditional bots, AI-enhanced bots, and AI Agents. Traditional bots typically follow pre-set rules for tasks such as scraping or credential stuffing. In contrast, AI Agents can understand objectives, plan actions, invoke tools, and adapt based on environmental feedback. To describe this evolution, Ruishu Information introduces an L1-L5 threat framework ranging from low-autonomy scripted attacks to multi-agent systems capable of independent planning and collaboration.

New Attack Surfaces and Industry Impact

The addition of AI Agents has expanded the list of tracked threat scenarios from nine to thirteen. Four new categories include LLM application attacks, agent supply-chain compromise, agent identity impersonation and hijacking, and autonomous AI-orchestrated attacks. Financial services recorded a 60 percent share of malicious bot traffic, while the internet sector led in AI Agent traffic at 15 percent. Manufacturing showed the fastest growth in automation-related threats.

Shifting from Detection to Trust Governance

Traditional defenses relying on IP addresses, user agents, or static fingerprints are becoming less effective against sophisticated agents that can operate inside legitimate browser environments. The report advocates moving toward a trust-governance model that evaluates identity, behavior, and intent. Under this approach, high-trust traffic receives normal access, medium-risk traffic faces rate limiting or additional verification, and low-trust traffic is subject to stricter controls or blocking.

Ruishu Information recommends five core measures: WAAP full-link defense, full-lifecycle data protection, dynamic environment detection, attack-chain correlation, and dedicated agent trust governance. These controls aim to reduce reliance on static signatures through dynamic obfuscation, tokenization, and fingerprinting techniques while enabling differentiated handling of compliant versus malicious machine traffic.

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.

BoletimSecAI Security

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

Advanced AI models now enable cybercriminal groups to maintain uninterrupted reconnaissance across enterprises in every sector, mapping domains, exposed services, and infrastructure changes at a pace no human team could sustain for weeks. The automated process targets two opposite profiles of vulnerable systems: legacy environments left unpatched for years with outdated versions and forgotten permissions, and rapidly deployed applications built through Vibe Coding that reach production without security review. The entire attack chain—reconnaissance, vulnerability identification, validation, and exploitation—is now executed by AI agents operating with minimal human oversight. What previously required a dedicated specialized team focused on one target at a time now runs in parallel against thousands of targets simultaneously, with marginal cost approaching zero for each additional attack. This collapse in operational costs and rise in success rates has restructured the cybercrime economy, funding increasingly sophisticated tools and lowering the barrier for new operators who need only platform access rather than deep technical expertise. The time window between an application reaching production and discovery by attackers has shrunk to hours, while most organizations still treat security as a finite project rather than an ongoing process.

安全客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.