
arp-spoof ~ ARP-Spoofing tool written in Rust language.
This tool allows intercepting Ipv4 traffic between two hosts on the same network. Typically between one machine and the internet gateway.
Features:
+ 1 to 1 route poisoning
+ save intercepted traffic as pcap file
+ automatic Ipv4 forwarding
Rust Crate Dependencies:
– pcap
– argparse
– nix
– time
TODO:
– implement n to m route poisoning
– remove –own parameter as soon as rust-pcap allows ip enumeration.
Usage:
1 2 3 4 5 6 7 |
git clone https://github.com/gcarq/arp-spoof && cd arp-spoof cargo build cd arp-spoof/taget/debug ./arp-spoof -h (for print helper) Note for arch Linux: On Arch based Linux, install community/rust, community/cargo and core/libpcap. If not running as root, you need to set capabilities like so: sudo setcap cap_net_raw,cap_net_admin=eip path/to/bin |
Source : https://github.com/gcarq