- Add REST API for node/user management (axum-based) - Add NodeRegistry for server check-in and load balancing - Add SniManager for dynamic SNI updates and emergency blocking - Add CDN Dashboard CLI (oncp-master) with real-time monitoring - Add ProbeDetector in ostp-guard for active probing detection - Add iptables/nftables/Windows firewall ban integration - Extend MimicryEngine with async SNI updates from control plane - Fix all compilation warnings - Update author to ospab.team
17 lines
432 B
TOML
17 lines
432 B
TOML
[package]
|
|
name = "ostp-guard"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "OSTP Anti-Reverse Engineering & Protection Module"
|
|
|
|
[dependencies]
|
|
rand.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["debugapi", "processthreadsapi", "winnt", "sysinfoapi", "libloaderapi"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|