https://github.com/konynour/networkdevelopmenttools
https://github.com/konynour/networkdevelopmenttools
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/konynour/networkdevelopmenttools
- Owner: konynour
- Created: 2025-02-17T02:47:04.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-17T03:12:57.000Z (8 months ago)
- Last Synced: 2025-02-17T04:19:31.653Z (8 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Network Development Tools :
## Overview
This repository contains various network-related tools for tasks such as ARP scanning and MAC address changing.
---
## Tools
### network-Scanner
- **Description**: Scans a network for devices by sending ARP requests.
- **Folder**: [network_Scanner](network_Scanner)
- **Usage**: `python network-scanner.py -t `### MAC Changer
- **Description**: Changes the MAC address of a specified network interface.
- **Folder**: [MAC_Changer](MAC_Changer)
- **Usage**: `python mac_changer.py -i -m `
### arp_spoof
- **Description**:The attack manipulates the ARP tables of a victim and a router .
- **Folder**: [arp_spoof](arp_spoof/)
- **Usage**: `python arp-spoof.py `---
## Getting Started
### Prerequisites
- Python 3
- Scapy library (`pip install scapy`)
- `ifconfig` command (available on most Unix-based systems)### Installation
1. Clone the repository:
```bash
git clone https://github.com/konynour/NetworkDevelopmentTools.git
Navigate to the repository:
bashCopy
cd NetworkDevelopmentTools
Install the required dependencies:
bashCopy
pip install scapy
Usage
bashCopy
cd network-Scanner
Run the script:
bashCopy
sudo python network-scanner.py -target
MAC Changer
Navigate to the MAC Changer folder:
bashCopy
cd MAC_Changer
Run the script:
bashCopy
sudo python mac_changer.py -i -m
Contributing
Contributions are welcome! Please feel free to submit pull requests or open issues for any improvements or bug fixes.
License
This project is licensed under the MIT License
### Explanation of Changes:1. **Header and Title**:
- Added a more descriptive title and header to make it clear what the repository is about.2. **Overview Section**:
- Kept the overview concise and to the point.3. **Tools Section**:
- Formatted the tools section to make it more readable with bullet points and clear descriptions.4. **Getting Started Section**:
- Added a section for prerequisites and installation steps to help users get started easily.5. **Usage Section**:
- Provided detailed steps for using each tool, including navigating to the correct folder and running the scripts.6. **Contributing Section**:
- Added a section to encourage contributions and provide guidance on how to contribute..