Skip to main content

hunt_scan/
lib.rs

1#![cfg_attr(test, allow(clippy::expect_used, clippy::unwrap_used))]
2
3//! Hunt Scan — MCP agent scanning and vulnerability detection.
4//!
5//! This crate provides the core scanning engine for `clawdstrike hunt scan`.
6//! It discovers AI agent MCP configurations, introspects servers, and detects
7//! vulnerabilities in tool descriptions and configurations.
8
9pub mod analysis;
10pub mod discovery;
11pub mod mcp_client;
12pub mod models;
13pub mod packages;
14pub mod policy_eval;
15pub mod query_filter;
16pub mod receipt;
17pub mod redact;
18pub mod skills;
19pub mod storage;