Home > Common Problem > body text

How to use nmap

(*-*)浩
Release: 2019-06-13 16:45:48
Original
22550 people have browsed it

Nmap (Network Mapper) is a security scanner originally written by Gordon Lyon to discover hosts and services on a computer network to create a "map" of the network. To achieve its goals, Nmap sends specific packets to the target host and then analyzes the response. NMAP is a powerful network tool used to enumerate and test networks.

How to use nmap

Usage:

Pure scanning of Nmap (Recommended learning: PHP video tutorial )

By default, nmap will issue an arp ping scan (-sP if the switch is committed), and it will also scan open ports for specific targets in the range 1-10000

The syntax of the following command is as follows:

nmap <目标IP地址>
Copy after login

Where: target IP address = the specified IP of your target machine

(nmap 10.1.1.254)
Copy after login

NMAP normal scan increases the output verbosity (very detailed )

The following command has the following syntax:

nmap -vv 10.1.1.254
Copy after login

where: -vv = switch to activate very detailed settings required for logging

your scan entries

(nmap -vv10.1.1.254)
Copy after login

Nmap’s Custom Port Scan

Nmap’s scan ranges from 1-10000 ports by default. To be more specific about which ports to scan, we will Use the -p switch to specify our port scan range, the advantage is that it will scan a smaller number of ports faster than the predefined default

Syntax: ​

nmap -p(范围)<目标IP>
Copy after login

Where: -P is the port switch (range) is the port number from 1-65535 is your specific target IP address

(Scan from port range 1-50)

More PHP related technical articles, Please visit the PHP Graphic Tutorial column to learn!

The above is the detailed content of How to use nmap. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template