1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! This is a metasploit RPC library which makes a HTTP Connection with the Metasploit RCP Server.
//! All the modules and functions are written on the basis of Metasploit RPC Guide.
//! ## Example
//! ```
//! use metasploit::client::Client;
//! let client=Client::new("127.0.0.1",55552,"msf","password",true);
//! println!("{}",client.gettoken());
//! ```
//! The above one is a simple example code where an connection is made with RPC Server and the token is printed
//!
pub mod client;
pub mod msf;
pub mod error;
pub mod value;
#[path="structs/response/mod.rs"] pub mod response;