Nmap (Network Mapper) is a powerful open-source tool used for network discovery and security auditing. It allows system administrators to identify hosts and services on a computer network, thus creating a "map" of the network. Nmap is widely used for tasks such as network inventorying, managing service upgrades, and monitoring host or service uptime.
Here are some basic commands that you can use with Nmap:
nmap 192.168.1.1
nmap 192.168.1.1-100
nmap 192.168.1.0/24
nmap -sV 192.168.1.1
nmap -O 192.168.1.1
Below is an example of how to use Nmap to scan a specific host:
nmap -sS -p 1-65535 192.168.1.1
This command performs a TCP SYN scan on all ports of the specified IP address (192.168.1.1).
How do I avoid rehashing overhead with std::set in multithreaded code?
How do I find elements with custom comparators with std::set for embedded targets?
How do I erase elements while iterating with std::set for embedded targets?
How do I provide stable iteration order with std::unordered_map for large datasets?
How do I reserve capacity ahead of time with std::unordered_map for large datasets?
How do I erase elements while iterating with std::unordered_map in multithreaded code?
How do I provide stable iteration order with std::map for embedded targets?
How do I provide stable iteration order with std::map in multithreaded code?
How do I avoid rehashing overhead with std::map in performance-sensitive code?
How do I merge two containers efficiently with std::map for embedded targets?