eoka 0.3.15

Stealth browser automation for Rust. Puppeteer/Playwright alternative with anti-bot bypass.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Stealth Layer
//!
//! All the anti-detection components:
//! - Binary patcher (Aho-Corasick based)
//! - JavaScript evasion scripts
//! - Human-like interaction simulation
//! - Fingerprint generation

pub mod evasions;
pub mod fingerprint;
pub mod human;
pub mod patcher;

pub use evasions::{build_evasion_script, full_evasion_script};
pub use fingerprint::{random_user_agent, Fingerprint, Platform};
pub use human::{Human, HumanSpeed};
pub use patcher::{find_chrome, ChromePatcher};