mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
[pitboss/grind] deferred session-0017 (20260522T163126Z-7d60)
This commit is contained in:
parent
5cb8056250
commit
1e5f27f56d
8 changed files with 1231 additions and 8 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue