arp-spoofer-cli 0.1.0

A command-line tool for ARP spoofing attacks.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Parser;

#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
pub struct Cli {
    #[arg(short, long)]
    pub debug: bool,

    #[arg(long, short)]
    pub interface: String,

    #[arg(long, short)]
    pub target: String,

    #[arg(long, short)]
    pub gateway: String,
}