Function msflist

Source
pub fn msflist(list: &str) -> Result<(), Error>
Expand description

ยงExample

You can use mslist() to help you see what encoders and payloads to use with metasploit. Lists: encoders payloads formats nops platforms archs all

use hacktools::msf;
fn main() -> Result<(), io::Error> {
    msflist("encoders");
    Ok(())
}