MyNmap is an innovative tool designed to simplify and streamline network scanning processes. Built as a wrapper for Nmap, it abstracts the complexity of traditional commands, allowing cybersecurity professionals to perform scans more efficiently. Key features include:
- TCP and UDP Scans: Choose between different types of scans based on your needs.
- Host Discovery: Quickly identify active devices on the network.
- Flexible Target Specification: Scan individual IPs, ranges, subnets, or use input files.
- Result Saving and Display: Results are displayed in the terminal and saved for later analysis.
Installation:
To install MyNmap, simply execute the `install.sh` file, which handles dependency checks and installations.
<h1>Install MyNmap</h1> chmod +x install.sh ./install.sh
Example Commands:
<h1>Basic TCP scan</h1> mynmap -t 192.168.1.1 <h1>UDP scan</h1> mynmap -u 192.168.1.1 <h1>Scan a range of IPs</h1> mynmap -r 192.168.1.1-192.168.1.254 <h1>Save results to a file</h1> mynmap -t 192.168.1.1 -o output.txt
Privacy Features:
MyNmap uses `tor-resolve` for domain name resolution to prevent DNS leaks, ensuring anonymous DNS queries.
<h1>Example of tor-resolve usage</h1> tor-resolve example.com
Access the Code:
- MyNmap on GitHub: https://lnkd.in/gXTe5uai
- MyNmap on MyCyber: https://lnkd.in/gpUsev7f
What Undercode Say:
MyNmap represents a significant step forward in network scanning tools, combining ease of use with robust privacy features. By leveraging tor-resolve
, it ensures that DNS queries remain anonymous, addressing a critical concern in cybersecurity. The tool’s ability to perform both TCP and UDP scans, along with flexible target specification, makes it versatile for various network environments. The inclusion of result saving and display options enhances its utility for detailed analysis. MyNmap is a valuable addition to the toolkit of any cybersecurity professional, simplifying complex tasks while maintaining high standards of privacy and efficiency. For those looking to deepen their understanding of network scanning, exploring Nmap’s extensive documentation and command options is highly recommended. Additionally, integrating MyNmap with other security tools can further enhance its capabilities, providing a comprehensive approach to network security.
Related Commands:
<h1>Nmap version detection</h1> nmap -sV 192.168.1.1 <h1>Nmap OS detection</h1> nmap -O 192.168.1.1 <h1>Nmap script scanning</h1> nmap --script=vuln 192.168.1.1 <h1>Nmap aggressive scan</h1> nmap -A 192.168.1.1
For further reading on Nmap and network security, visit the official Nmap documentation: https://nmap.org/book/man.html.
References:
Hackers Feeds, Undercode AI