azathoth_libload 0.1.3

A Dynamic loader for the AzathothC2 framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod utils;

#[cfg(feature = "hasher")]
pub use hashed::{get_proc_address, load_library, resolve_forwarder, find_api};
#[cfg(not(feature = "hasher"))]
pub use unhashed::{get_proc_address, load_library, resolve_forwarder, find_api};

#[cfg(feature = "hasher")]
pub mod hashed;

#[cfg(not(feature = "hasher"))]
pub mod unhashed;