secret_scraper 0.1.3

A URL Crawler tool and library for crawling web targets, discovering links, and detecting secrets with configurable regex rules.
Documentation
1
2
3
4
5
6
7
8
//! Actor-based crawler internals.

/// Crawler actor message and result types.
pub mod bo;
/// Crawl scheduler and result aggregation.
pub mod crawler;
/// Actix worker actor that fetches and processes URLs.
pub mod worker;