[pitboss/grind] deferred session-0017 (20260522T163126Z-7d60)

This commit is contained in:
pitboss 2026-05-22 18:30:16 -05:00
parent 5cb8056250
commit 1e5f27f56d
8 changed files with 1231 additions and 8 deletions

View file

@ -11,15 +11,20 @@
//! the route / framework adapters; the per-cap sink adapters live
//! here so the per-language verticals can ship independently.
pub mod crypto_go;
pub mod crypto_java;
pub mod crypto_js;
pub mod crypto_php;
pub mod crypto_python;
pub mod crypto_ruby;
pub mod crypto_rust;
pub mod data_exfil_go;
pub mod data_exfil_java;
pub mod data_exfil_js;
pub mod data_exfil_php;
pub mod data_exfil_python;
pub mod data_exfil_ruby;
pub mod data_exfil_rust;
pub mod go_chi;
pub mod go_echo;
pub mod go_fiber;
@ -131,15 +136,20 @@ pub mod xxe_php;
pub mod xxe_python;
pub mod xxe_ruby;
pub use crypto_go::CryptoGoAdapter;
pub use crypto_java::CryptoJavaAdapter;
pub use crypto_js::CryptoJsAdapter;
pub use crypto_php::CryptoPhpAdapter;
pub use crypto_python::CryptoPythonAdapter;
pub use crypto_ruby::CryptoRubyAdapter;
pub use crypto_rust::CryptoRustAdapter;
pub use data_exfil_go::DataExfilGoAdapter;
pub use data_exfil_java::DataExfilJavaAdapter;
pub use data_exfil_js::DataExfilJsAdapter;
pub use data_exfil_php::DataExfilPhpAdapter;
pub use data_exfil_python::DataExfilPythonAdapter;
pub use data_exfil_ruby::DataExfilRubyAdapter;
pub use data_exfil_rust::DataExfilRustAdapter;
pub use go_chi::GoChiAdapter;
pub use go_echo::GoEchoAdapter;
pub use go_fiber::GoFiberAdapter;