mynmap
is a simplified wrapper for Nmap, designed to make network scanning quick and effortless. This tool is perfect for those who want to avoid writing long and complex Nmap commands. It abstracts away the intricacies of Nmap's syntax, allowing users to perform scans by specifying only the essentials.
- TCP and UDP Scans: Choose between TCP and UDP scans with Nmap.
- Host discovery: Performs host discovery.
- Flexible Target Specification: Scan single IPs, IP ranges, subnets, or use a file for input.
- Save and Display Results: Outputs scan results both on the terminal and saves them to a file.
- Python 3
- Nmap installed and accessible via the command line.
Follow these steps to download mynmap on your system:
Use wget
to download the binary file from the GitHub releases page:
wget https://github.com/cyb4x/myNmap/releases/download/mynmap/mynmap
sudo cp mynmap /usr/local/bin
sudo chmod +x /usr/local/bin/mynmap
mynmap --help
Follow these steps to download mynmap on your system:
- Clone the repository:
git clone https://github.com/cyb4x/myNmap.git
- Navigate to the project directory:
cd myNmap
- Run the setup script to install dependencies and create the binary:
sudo python3 setup.py
sudo mynmap -t <scan_type> [-f <file>] [-r <targets>]
mynmap -r 192.168.1.2
mynmap -t tcp -r 192.168.1.0/24
mynmap -t udp -r 192.168.1.1-192.168.1.10
mynmap -t tcp -f targets.txt
mynmap --hosts -i eth0
- Results are displayed on the terminal during the scan.
- A detailed scan report is saved in the
nmap_output/
directory with filenames corresponding to the scan type, e.g.,nmap_output/tcp_ports
ornmap_output/udp_ports
.
Access the help menu for detailed options:
mynmap -h
- Fork the repository.
- Create a feature branch:
git checkout -b feature-name
- Commit changes:
git commit -m "Add your message here"
- Push to your fork and create a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.