Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.24 KB

README.md

File metadata and controls

55 lines (38 loc) · 1.24 KB

ARP Spoofing Tool

This project implements ARP spoofing using C++ and the pcap library. It is designed primarily for network study purposes.

⚠️ Caution: Never run this tool on a public Wi-Fi network. Using ARP spoofing maliciously or without permission can be illegal and unethical.

📚 Table of Contents

🛠 Requirements

  • Operating System: Ubuntu 22.04
  • Dependencies: g++, libpcap-dev, libgtest-dev

🚀 Installation

  1. Clone this repository:

    git clone [repository-url]
    cd arp-spoofing-main
  2. Install the required dependencies:

    sudo apt install g++ libpcap-dev libgtest-dev
  3. Build the project:

    make

🧑‍💻 Usage

To run the ARP spoofing tool, use the following syntax:

./arp-spoof <interface> <sender ip> <target ip>

Example:

./arp-spoof wlan0 192.168.10.2 192.168.10.1 

📜 License

This project is open source and available under the MIT License (if applicable).