ip-spoofing 0.1.2

Library to send fake IPv4 headers & UDP/TCP-SYN packets to perform L3/L4 attacks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(clippy::new_without_default, clippy::too_many_arguments)]

pub use etherparse;
pub use rand;

pub use error::*;
pub use packet::*;
pub use socket::*;

mod error;
mod packet;
mod socket;