Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Saluki committed May 24, 2021
1 parent cde92a3 commit caddc21
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 7 deletions.
74 changes: 69 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "arp-scan"
description = "A minimalistic ARP scan tool"
license = "AGPL-3.0-or-later"
version = "0.5.0"
version = "0.6.0"
authors = ["Saluki"]
edition = "2018"
readme = "README.md"
Expand All @@ -16,3 +16,4 @@ pnet = "0.28.0"
ipnetwork = "0.18.0"
clap = "2.33.3"
dns-lookup = "1.0.6"
rand = "0.8.3"
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Find all hosts in your local network using this fast ARP scanner. The CLI is wri
Download the `arp-scan` binary for Linux (Ubuntu, Fedora, Debian, ...). See the [releases page](https://github.com/Saluki/arp-scan-rs/releases) for other binaries.

```bash
wget -O arp-scan https://github.com/Saluki/arp-scan-rs/releases/download/v0.5.0/arp-scan-v0.5.0-x86_64-unknown-linux-musl && chmod +x ./arp-scan
wget -O arp-scan https://github.com/Saluki/arp-scan-rs/releases/download/v0.6.0/arp-scan-v0.6.0-x86_64-unknown-linux-musl && chmod +x ./arp-scan
```

List all available network interfaces.
Expand Down Expand Up @@ -73,6 +73,10 @@ Change or force the IPv4 address sent as source in the broadcasted ARP packets.

Change or force the MAC address sent as destination ARP request. By default, a broadcast destination (`00:00:00:00:00:00`) will be set.

#### Randomize target list `-R`

Randomize the IPv4 target list before sending ARP requests. By default, all ARP requests are sent in ascending order by IPv4 address.

#### Set VLAN ID `-Q 540`

Add a 802.1Q field in the Ethernet frame. This fields contains the given VLAN ID for outgoing ARP requests. By default, the Ethernet frame is sent without 802.1Q fields (no VLAN).
Expand Down

0 comments on commit caddc21

Please sign in to comment.