rswappalyzer 0.1.0

基于 Rust 实现的 Wappalyzer 核心工具,用于快速识别网站使用的技术栈(支持异步缓存、正则优化、多格式请求头)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 检测模块:技术检测核心逻辑
pub mod global;
pub mod analyzer;
pub mod detector;

// 导出核心接口
pub use self::global::{init_wappalyzer, init_wappalyzer_with_config};
pub use self::detector::{
    TechDetector,
    header_map_to_hashmap,
    detect_technologies_wappalyzer,
    detect_technologies_wappalyzer_hashmap,
    detect_technologies_wappalyzer_lite,
    detect_technologies_wappalyzer_lite_hashmap,
    detect_technologies_wappalyzer_with_cookies,
    detect_technologies_wappalyzer_lite_with_cookies,
};