From 704d7e8e0ec25bc07546f6a0f858b8ed36b5fafb Mon Sep 17 00:00:00 2001 From: test2 Date: Wed, 16 Oct 2019 23:11:10 +0300 Subject: [PATCH] nmap --- ex-1_iptables.adoc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ex-1_iptables.adoc b/ex-1_iptables.adoc index 3f6ee04..4d79127 100644 --- a/ex-1_iptables.adoc +++ b/ex-1_iptables.adoc @@ -95,6 +95,7 @@ testnetwork2_worker_2.testnetwork2_net (172.21.0.6) [NOTE] ==== Nmap, short for Network Mapper, is a free, open-source tool for vulnerability scanning and network discovery. Network administrators use Nmap to identify what devices are running on their systems, discovering hosts that are available and the services they offer, finding open ports and detecting security risks. + See https://en.wikipedia.org/wiki/Nmap ==== @@ -113,6 +114,19 @@ nmap -sP 83.212.114.* +[appendix] +== How to use Nmap + +There is a wide range of free network monitoring utilities and vulnerability scanners available to network administrators and security auditors. While the basis of Nmap's functionality is port scanning, it allows for a variety of related capabilities including: + +- Network mapping: Nmap can identify the devices on a network (also called host discovery), including servers, routers and switches, and how they're physically connected. +- OS detection: Nmap can detect the operating systems running on network devices (also called OS fingerprinting), providing the vendor name, the underlying operating system, the version of the software and even an estimate of devices' uptime. +- Service discovery: Nmap can not only identify hosts on the network, but whether they're acting as mail, web or name servers, and the particular applications and versions of the related software they're running. +- Security auditing: Figuring out what versions of operating systems and applications are running on network hosts lets network managers determine their vulnerability to specific flaws. If a network admin receives an alert about a vulnerability in a particular version of an application, for example, she can scan her network to identify whether that software version is running on the network and take steps to patch or update the relevant hosts. Scripts can also automate tasks such as detecting specific vulnerabilities. + + + +