clawscan 1.0.0

OpenClaw/Moltbot/Clawdbot vulnerability scanner for prompt injection, supply chain, and RAG poisoning attacks
Documentation
//! ClawScan - High-Performance OpenClaw Vulnerability Scanner
//!
//! Comprehensive security testing for OpenClaw/Moltbot/Clawdbot covering:
//! - OWASP LLM Top 10 2025
//! - MITRE ATLAS AI/ML Attack Framework
//! - Known CVEs (CVE-2026-25253, CVE-2026-22708, CVE-2026-25157)

pub mod types;
pub mod target;
pub mod client;
pub mod attacks;
pub mod scanner;
pub mod report;

pub use types::*;
pub use target::{parse_target, ParsedTarget};
pub use client::{OpenClawClient, CswshResult};
pub use attacks::{
    execute_cve_2026_25253, execute_cve_2026_22708, execute_cve_2026_25157,
    execute_prompt_injection, execute_rag_poisoning, execute_supply_chain,
    execute_mcp_poisoning, execute_elevated_bypass, execute_zero_click_rce,
    check_write_capability, AttackReport
};
pub use scanner::{ScanConfig, scan_target, scan_targets};
pub use report::{ScanReport, generate_report, save_json_report, format_terminal_report};