From 218c1940b92d191b2238c0d47c12e5695c263044 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Sat, 16 Dec 2023 23:27:49 +0100 Subject: [PATCH 1/7] Update usage information --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aec09d0..0da5832 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ - Chocolatey (Windows): `choco install arp-scanner` - Snapcraft (Linux): `snap install arp-scanner` - GitHub (Windows/Linux): https://github.com/Stone-Red-Code/ARP-Scanner/releases -1. Start `ARP-Scanner.exe` or `ARP-Scanner` on Linux with the IP range it should scan as parameter +1. Start `arp-scanner` Linux with the IP range it should scan as parameter (e.g. `192.168.1.0 - 192.168.1.255`) > Note: This programm may not work on all linux distributions because the [ArpLookup](https://github.com/georg-jung/ArpLookup) library has some [limitations](https://github.com/georg-jung/ArpLookup#supported-platforms) From 3695d193c795d202b77c63ba13a1524342ccc782 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Sat, 16 Dec 2023 23:43:39 +0100 Subject: [PATCH 2/7] Fix install commands --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0da5832..49ead20 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ ## Usage 1. Download the latest release - - Chocolatey (Windows): `choco install arp-scanner` - - Snapcraft (Linux): `snap install arp-scanner` + - Chocolatey (Windows): `choco install arp-scanner --version=0.2.0` + - Snapcraft (Linux): `snap install arp-scanner` and `snap connect arp-scanner:network-control` to give it permission to send arp requests - GitHub (Windows/Linux): https://github.com/Stone-Red-Code/ARP-Scanner/releases -1. Start `arp-scanner` Linux with the IP range it should scan as parameter (e.g. `192.168.1.0 - 192.168.1.255`) +1. Start `arp-scanner` with the IP range it should scan as parameter (e.g. `192.168.1.0 - 192.168.1.255`) > Note: This programm may not work on all linux distributions because the [ArpLookup](https://github.com/georg-jung/ArpLookup) library has some [limitations](https://github.com/georg-jung/ArpLookup#supported-platforms) From 8c8f4279688d71c661ffa1f38feb7cec77980b79 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Sat, 16 Dec 2023 23:47:09 +0100 Subject: [PATCH 3/7] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 49ead20..73d7a50 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ 1. Download the latest release - Chocolatey (Windows): `choco install arp-scanner --version=0.2.0` - - Snapcraft (Linux): `snap install arp-scanner` and `snap connect arp-scanner:network-control` to give it permission to send arp requests + - Snapcraft (Linux): `snap install arp-scanner`\ + and `snap connect arp-scanner:network-control` to give it permission to send arp requests - GitHub (Windows/Linux): https://github.com/Stone-Red-Code/ARP-Scanner/releases 1. Start `arp-scanner` with the IP range it should scan as parameter (e.g. `192.168.1.0 - 192.168.1.255`) From b78264458ba7e649816a13f0a7d71ca4994a4512 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Wed, 27 Dec 2023 01:19:05 +0100 Subject: [PATCH 4/7] Remove version from choco install command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 73d7a50..f0239ff 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ## Usage 1. Download the latest release - - Chocolatey (Windows): `choco install arp-scanner --version=0.2.0` + - Chocolatey (Windows): `choco install arp-scanner` - Snapcraft (Linux): `snap install arp-scanner`\ and `snap connect arp-scanner:network-control` to give it permission to send arp requests - GitHub (Windows/Linux): https://github.com/Stone-Red-Code/ARP-Scanner/releases From a1f5e7fe051ee9cd8d22e029afdf368649f56d0a Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:05:01 +0100 Subject: [PATCH 5/7] Use new GitHub markdown to highlight note --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f0239ff..47f75b7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ - GitHub (Windows/Linux): https://github.com/Stone-Red-Code/ARP-Scanner/releases 1. Start `arp-scanner` with the IP range it should scan as parameter (e.g. `192.168.1.0 - 192.168.1.255`) -> Note: This programm may not work on all linux distributions because the [ArpLookup](https://github.com/georg-jung/ArpLookup) library has some [limitations](https://github.com/georg-jung/ArpLookup#supported-platforms) +> [!Note] +> This programm may not work on all linux distributions because the [ArpLookup](https://github.com/georg-jung/ArpLookup) library has some [limitations](https://github.com/georg-jung/ArpLookup#supported-platforms) ## Example ![ARP-Scanner-Example](https://user-images.githubusercontent.com/56473591/236293969-4e8a65d2-86a3-4f10-8837-2b1aa0490252.png) From 8e1f6109285378ab9223a1368d2d24af5b9ee229 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:41:20 +0100 Subject: [PATCH 6/7] Add "Follow the development" section to readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 47f75b7..6fbd1ab 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,9 @@ > [!Note] > This programm may not work on all linux distributions because the [ArpLookup](https://github.com/georg-jung/ArpLookup) library has some [limitations](https://github.com/georg-jung/ArpLookup#supported-platforms) +## Follow the development +[![Twitter(X)](http://img.shields.io/badge/Twitter-black.svg?&logo=x&style=for-the-badge&logoColor=white)](https://twitter.com/search?q=%23ArpScanner%20%40StoneRedCode) + ## Example ![ARP-Scanner-Example](https://user-images.githubusercontent.com/56473591/236293969-4e8a65d2-86a3-4f10-8837-2b1aa0490252.png) From 3263d1bdaeed5143fc0f81808541f7e5187d5ccd Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Wed, 3 Jan 2024 00:41:43 +0100 Subject: [PATCH 7/7] Remove unnecessary plug from snapcraft.yaml --- snap/snapcraft.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 3be973e..f4a9930 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -42,5 +42,4 @@ apps: arp-scanner: command: ARP-Scanner plugs: - - network - network-control