rust-metasploit 1.2.0

Rust wrapper for metasploit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(non_camel_case_types)]
use serde::Serialize as se;

#[derive(se)]
pub struct login(pub String,pub String,pub String);
#[derive(se)]
pub struct logout(pub String,pub String,pub String);
#[derive(se)]
pub struct tokenadd(pub String,pub String,pub String);
#[derive(se)]
pub struct tokengen(pub String,pub String);
#[derive(se)]
pub struct tokenlist(pub String,pub String);
#[derive(se)]
pub struct tokenrem(pub String,pub String,pub String);