Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hqarroum/arp-spoofer
👾 A command-line tool to easily run a man-in-the-middle attack leveraging ARP cache poisoning.
https://github.com/hqarroum/arp-spoofer
arp-cache-poisoning man-in-the-middle-attack rust security
Last synced: 5 days ago
JSON representation
👾 A command-line tool to easily run a man-in-the-middle attack leveraging ARP cache poisoning.
- Host: GitHub
- URL: https://github.com/hqarroum/arp-spoofer
- Owner: HQarroum
- License: mit
- Created: 2022-12-25T15:04:57.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-28T15:50:32.000Z (almost 2 years ago)
- Last Synced: 2024-04-24T19:33:27.406Z (7 months ago)
- Topics: arp-cache-poisoning, man-in-the-middle-attack, rust, security
- Language: Rust
- Homepage:
- Size: 59.6 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# arp-spoofer
> A command-line tool to easily run a man-in-the-middle attack leveraging ARP cache poisoning.[![Build Status](https://app.travis-ci.com/HQarroum/arp-spoofer.svg?branch=master)](https://app.travis-ci.com/HQarroum/arp-spoofer)
[![CodeFactor](https://www.codefactor.io/repository/github/hqarroum/arp-spoofer/badge)](https://www.codefactor.io/repository/github/hqarroum/arp-spoofer)
[![DeepSource](https://deepsource.io/gh/HQarroum/arp-spoofer.svg/?label=active+issues&show_trend=true&token=xNrQ_8ojvQjL9sfoCUQ1OXpd)](https://deepsource.io/gh/HQarroum/arp-spoofer/?ref=repository-badge)Current version: **1.0.1**
## 📋 Table of content
- [Installation](#-install)
- [Description](#-description)
- [Usage](#-usage)
- [Dependencies](#-install)
- [See Also](#-see-also)## 🚀 Install
```bash
cargo install arp-spoofer
```## 🔰 Description
> This command-line tool has been primarily built for educational purposes and as a mean to develop a meaningful project in order to learn [Rust](https://www.rust-lang.org/). It is by no means production material, but has meaningful comments throughout the code to document the different steps and design decisions made to build this tool.
`arp-spoofer` is a portable, synchronous ARP cache poisoning command-line tool written in Rust that provides an easy way to perform man-in-the-middle attack on a local Ethernet-based network segment. It only requires the IP address of the target to attack, and the IP address of the default gateway on the network.
An ARP cache poisoning attack leverages design weaknesses in the [ARP protocol](https://en.wikipedia.org/wiki/Address_Resolution_Protocol) with which an attacker can corrupt the ARP cache of remote victims by abusing Victim's ARP caches, making victims believe that the attacker's IP address is associated with the MAC address of a different computer. Therefore, by sending specially crafter ARP packets on an Ethernet-based local area network, it is relatively easy to deceive victims and have them sending all their packets to the attacker's computer instead of the default network gateway.
Below is a simplified representation of how an attacker poisons the cache of the victim and the gateway and how the traffic flows between the different elements when IPv4 forwarding is enabled.
```mermaid
sequenceDiagram
Attacker->>Victim: Gateway IP is at Attacker MAC
Note over Attacker,Victim: Victim ARP Cache Poisoning
Attacker->>Gateway: Victim IP is at Attacker MAC
Note over Attacker,Gateway: Gateway ARP Cache Poisoning
Victim--)Attacker: Traffic intended for the Gateway
Gateway--)Attacker: Traffic intended for the Victim
Attacker--)Victim: Forwarding of the Victim Traffic
Note over Attacker,Victim: When IPv4 forwarding is enabled
Attacker--)Gateway: Forwarding of the Gateway Traffic
Note over Attacker,Gateway: When IPv4 forwarding is enabled
```## 📘 Usage
The usage of `arp-spoofer` is quite easy, the only information that needs to be supplied are :
- The local network interface to use to perform the attack.
- The IP address of the victim.
- The IP address of the default network gateway.> Note that the ARP cache of both the victim and the default network gateway will be altered when running this tool. By interrupting the tool by pressing `ctrl-c`, it will attempt to restore the ARP cache of both the victim and the default network gateway to their original values.
### Attacking a remote host
You can initiate an attack by running `arp-spoofer` as shown below.
```bash
arp-spoofer \
--interface \
--target \
--gateway
````arp-spoofer` will automatically attempt to resolve the MAC address of both the victim and default network gateway by issuing legitimate ARP requests on the network. It will then craft spoofed ARP packets to poison the cache of the victim - tricking it into believing the attacker is the default gateway - and of the gateway - tricking it into believing the attacker is the victim. This way all bi-directional traffic from the victim to the gateway (and from the gateway to the victim) will transit via the attacker's network interface.
> You can monitor the packets from the victim in transit via the attacker's network interface using a tool such as [Wireshark](https://www.wireshark.org/).
## 📦 Dependencies
Below is a list of the main external crates which `arp-spoof` depends on.
Name | Version | Description
-------------------------------------------- | ------- | -----------
[`pnet`](https://github.com/libpnet/libpnet) | 0.35.0 | libpnet is used as a way to build, send and receive packets on the datalink layer.
[`clap`](https://github.com/clap-rs/clap) | 4.5.17 | clap is used as a command-line argument management library.
[`indicatif`](https://github.com/console-rs/indicatif) | 0.17.8 | indicatif is used as a console output management library.
[`ctrlc`](https://github.com/Detegr/rust-ctrlc) | 3.4.5 | ctrlc is used to portably register hooks on ctrl-c.## 👀 See Also
- The [ARP Protocol](https://en.wikipedia.org/wiki/Address_Resolution_Protocol) Wiki page.
- The [ARP Spoofing](https://en.wikipedia.org/wiki/ARP_spoofing) Wiki page.
- The [ARP Spoofer](https://github.com/EONRaider/Arp-Spoofer) tool.