corrode-scanner 0.3.0

Passive web reconnaissance tool for extracting secrets, credentials, and security data
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod api;
mod cli;
mod config;
mod detectors;
mod network;
mod reporting;
mod scanner;
mod types;

use anyhow::Result;

#[tokio::main]
async fn main() -> Result<()> {
    let config = cli::parse()?;
    scanner::workflow::run(config).await
}