apihunter 0.1.2

Async API security scanner with passive and active checks for CORS, CSP, GraphQL, JWT, OpenAPI, and API posture.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// src/lib.rs
//
// Library entry point — re-exports modules so that integration tests
// and external consumers can reference them.

pub mod auth;
pub mod auto_report;
pub mod cli;
pub mod config;
#[allow(dead_code)]
pub mod discovery;
pub mod error;
pub mod http_client;
pub mod progress_tracker;
pub mod reports;
pub mod runner;
pub mod scanner;
pub mod waf;