AI News AI资讯 6h ago Updated 2h ago 更新于 2小时前 48

Staying Ahead of Adversarial AI Through Agentic Source Code Review 通过智能体源代码审查保持领先于对抗性AI

Mandiant introduced the Agentic Vulnerability Discovery Harness (AVDH), a multi-agent orchestration framework built on Google's Agent Development Kit (ADK) for rapid, high-precision source code vulnerability analysis. AVDH uses a sequential, waterfall-style pipeline of specialized agents—starting with an Explorer agent for codebase reconnaissance, followed by Specialist Explorers, and a Threat Model Synthesis agent—to systematically identify and prioritize vulnerabilities. In 10 months of operat Mandiant发布Agentic Vulnerability Discovery Harness (AVDH),通过多智能体编排与人类专家驱动的结合,实现大规模代码库的快速漏洞发现 AVDH在10个月内发现超过100个真实关键漏洞,生成12个CVE,分析规模达数千万行代码 采用Google Agent Development Kit (ADK)框架,构建确定性顺序流水线,包含威胁建模、代码探索、漏洞发现等阶段 引入丰富的环境上下文输入(SBOM、威胁情报、架构文档),使智能体能够动态选择相关技能和漏洞模式 与CodeMender扫描形成双层防御策略,显著提升红队演练和事件响应中的漏洞发现效率

65
Hot 热度
75
Quality 质量
68
Impact 影响力

Analysis 深度分析

TL;DR

  • Mandiant introduced the Agentic Vulnerability Discovery Harness (AVDH), a multi-agent orchestration framework built on Google's Agent Development Kit (ADK) for rapid, high-precision source code vulnerability analysis.
  • AVDH uses a sequential, waterfall-style pipeline of specialized agents—starting with an Explorer agent for codebase reconnaissance, followed by Specialist Explorers, and a Threat Model Synthesis agent—to systematically identify and prioritize vulnerabilities.
  • In 10 months of operation, AVDH discovered over 100 true-positive critical vulnerabilities in two days during an incident response investigation involving stolen corporate repositories, and has produced 12 assigned CVEs with a dozen more in active disclosure.
  • The framework combines LLM-powered code analysis with rich environmental context (SBOMs, architecture docs, threat intelligence) and human expert validation gates to mitigate LLM non-determinism and improve accuracy.
  • AVDH is designed to complement existing scanning tools like CodeMender, forming a two-layered defense strategy that accelerates both broad-scale vulnerability discovery and targeted adversary simulation engagements.

Why It Matters

Mandiant's AVDH represents a significant step forward in applying agentic AI to real-world cybersecurity operations, demonstrating that structured multi-agent pipelines can outperform both manual review and traditional static analysis at scale. For AI practitioners and security teams, it provides a concrete, shareable architecture for building LLM-driven vulnerability discovery systems that balance automation with human oversight. The results—100+ critical vulnerabilities found in two days and 12 CVEs—prove that agentic approaches can meaningfully close the gap between defenders and adversaries leveraging AI for offensive purposes.

Technical Details

  • Framework & Orchestration: AVDH is built on Google's Agent Development Kit (ADK), implementing sequential multi-agent orchestration patterns. The architecture aligns with capabilities in Google Antigravity for centralized workflow management. Agents are chained in a deterministic pipeline where each phase completes before the next begins, reducing the non-deterministic risks inherent in LLM outputs.
  • Pipeline Architecture: The system follows a waterfall-style sequential methodology. It begins with an Explorer agent that identifies the codebase's core purpose, software domain, and directories to exclude, then dispatches Specialist Explorer subagents focused on authentication, authorization, routing, and other domain-specific areas. Findings are aggregated by a Threat Model Synthesis agent into a cohesive threat model, which undergoes human consultant verification before proceeding.
  • Context Integration: AVDH ingests rich environmental inputs including asset inventories, software bills of materials (SBOMs), architecture documentation, and threat intelligence. This contextual data is distilled into a knowledge base that enables agents to dynamically select relevant skills, language rules, and vulnerability patterns for deep, targeted analysis.
  • Validation & Human-in-the-Loop: The pipeline incorporates skeptical validation steps and human expert approval gates—particularly after threat model synthesis—to ensure accuracy before deeper analysis. This hybrid approach allows AI to handle scale while humans focus on high-impact validation and complex exploit chain reasoning.
  • Benchmarks & Results: Over 10 months, AVDH analyzed environments spanning tens of millions of lines of code, executed thousands of pipelines, and generated tens of thousands of findings. It uncovered assignable flaws in widely used web extensions and open-source projects, resulting in 12 assigned CVEs (including CVE-2026-13242 and CVE-2026-55803) with a dozen more in active disclosure. During incident response, it identified over 100 true-positive critical vulnerabilities in two days, and in adversary simulations, it quickly discovered an RCE vulnerability enabling initial access.

Industry Insight

  • The AVDH architecture demonstrates that the most effective agentic security systems are not fully autonomous but rather structured pipelines with human validation gates—organizations should prioritize deterministic orchestration and expert-in-the-loop designs over fully autonomous AI agents for critical security tasks.
  • As adversarial AI misuse accelerates, the combination of agentic source code review with continuous scanning tools (like CodeMender) creates a scalable two-layered defense; security teams should evaluate similar hybrid approaches that pair rapid agentic analysis with ongoing automated scanning for comprehensive coverage.
  • The public sharing of AVDH's architecture by Mandiant signals a broader industry shift toward open, reproducible agentic security frameworks—organizations should invest in building internal agentic capabilities tailored to their specific codebases and threat landscapes rather than relying solely on off-the-shelf scanning tools.

TL;DR

  • Mandiant发布Agentic Vulnerability Discovery Harness (AVDH),通过多智能体编排与人类专家驱动的结合,实现大规模代码库的快速漏洞发现
  • AVDH在10个月内发现超过100个真实关键漏洞,生成12个CVE,分析规模达数千万行代码
  • 采用Google Agent Development Kit (ADK)框架,构建确定性顺序流水线,包含威胁建模、代码探索、漏洞发现等阶段
  • 引入丰富的环境上下文输入(SBOM、威胁情报、架构文档),使智能体能够动态选择相关技能和漏洞模式
  • 与CodeMender扫描形成双层防御策略,显著提升红队演练和事件响应中的漏洞发现效率

为什么值得看

本文首次公开Mandiant内部使用的AI驱动漏洞发现架构,为安全从业者提供了可复用的多智能体编排实践案例。其将LLM能力与结构化方法论、人类专家验证相结合的思路,为对抗性AI时代的代码安全分析提供了可落地的技术路径。

技术解析

  • 架构框架:基于Google Agent Development Kit (ADK)构建,采用严格确定性的顺序流水线设计,类似瀑布模型,各阶段完成后才进入下一阶段,降低LLM非确定性带来的风险
  • 威胁建模阶段:通过Explorer智能体识别代码库核心目的,派遣Specialist Explorer子智能体分析认证、授权、路由等领域,最终由Threat Model Synthesis智能体聚合生成威胁模型,并设置人工审批关卡
  • 上下文注入机制:将资产清单、软件物料清单(SBOM)、架构文档和威胁情报等环境数据注入蒸馏知识库,使智能体能够动态选择相关技能、语言规则和漏洞模式
  • 多智能体协作:采用链式智能体编排,每个阶段由专门智能体负责,输出经过验证后传递给下一阶段,最终生成优先级排序的风险评估发现列表供人类专家审查

行业启示

  • AI安全分析需结构化编排:单纯依赖LLM进行代码分析存在非确定性风险,必须通过确定性流水线、审批关卡和人类专家介入来保证结果可靠性
  • 上下文驱动的智能体设计:将组织特定上下文(SBOM、威胁情报等)注入分析流程,可显著提升漏洞发现的精准度和相关性,避免泛化扫描的低效
  • 人机协同的新范式:AI负责大规模快速扫描和初步发现,人类专家专注于复杂验证和深度分析,这种分工模式可最大化双方优势,应对对抗性AI带来的安全挑战

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Security 安全 Agent Agent LLM 大模型 Code Generation 代码生成