From ab8e2f3240d99fab83e7c59a0e9a571b71a78406 Mon Sep 17 00:00:00 2001 From: Sibidharan Nandhakumar <hello@sibidharan.me> Date: Wed, 25 Nov 2020 21:00:38 +0530 Subject: [PATCH] Readme --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bc8d6f9..f309540 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ ``` -### LAHTP ARP Spoof Detector v0.1 +### LAHTP ARP Spoof Detector v0.1 (linux) This tool will sniff for ARP packets in the interface and can possibly detect if there is an ongoing ARP spoofing attack. This tool is still in a beta stage. @@ -30,3 +30,18 @@ Available arguments: Usage: ./arpsniffer -i <interface> [You can look for the available interfaces using -l/--lookup] ``` + +### How to compile? + +1. You should have `libpcap` installed on your linux system. If you don't have, you can do it with the following command + +``` +$ sudo apt-get install libpcap-dev +``` + +2. You can compile with the following command + +``` +$ gcc arpsniffer.c -o arpsniffer +``` + -- GitLab