Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Linux port scanning     - Cobbler Add custom YUM source (Linux)

- Linux find command usage summary (Linux)

- Build RPM package uses Docker mirror (Linux)

- To create a full command line Android Build System (Linux)

- To convert into a binary search tree sorted doubly linked list (Programming)

- SUSE Linux firewall configuration notes (Linux)

- Linux security concerns again (Linux)

- 20 Linux commands interview questions and answers (Linux)

- PHP generates a random password several ways (Programming)

- Java keyword final, static (Programming)

- Why not use the ifconfig command under RedHat Linux 5 (Linux)

- How to modify the Sublime in Tab four spaces (Linux)

- Ten correct use Redis skills (Database)

- Management DB2 logs (Database)

- Shorewall firewall settings under Ubuntu (Linux)

- Linux system security knowledge (Linux)

- Oracle 11g tracking and monitoring system-level triggers to drop misuse (Database)

- IOwait Linux system monitoring diagnostic tools (Linux)

- How Ubuntu Snappy Core 2 running on Raspberry Pi (Linux)

- Some MySQL interview questions (Database)

 
         
  Linux port scanning
     
  Add Date : 2018-11-21      
         
         
         
  NMap, that is, Network Mapper, is a network scanning and sniffing tool kit under Linux.

nmap is a network connecting end scanning software, used to scan your computer online open network connector. Determine which services run on which the connecting terminal, and which concluded that the computer running the operating system (which is also known as fingerprinting). It is one of the software network administrator must be used, as well as to assess the network security system.

Like most tools are used for network security tool, nmap is a lot of hacking and hackers (also known as script kids) love to use tools. System administrators can use nmap to detect unauthorized use of the work environment of the server, but the hackers will use nmap to collect the target computer's network settings so that planned method of attack.

Nmap often with software Nessus Vulnerability Assessment System confused. Nmap to covert way, to avoid the intrusion detection system to monitor and, where possible without affecting the daily operations of the target system.

Nmap in Matrix (The Matrix), together with SSH1 32-bit cyclic redundancy check vulnerability to intrusion by Trinity power station energy management systems.

Features

There are three basic functions, first to detect a group of hosts are online; followed by the host port scanning network services, provided by sniffing; can also be used to infer the host operating system. Nmap can be used to scan only two nodes of the LAN, up to more than 500 nodes. Nmap also allows users to customize scanning techniques. Often, a simple operation using the ICMP ping protocol to meet the general needs; and to be in-depth probing UDP or TCP port until the operating system used by the host; also can detect all the results will be recorded to log in various formats for further analysis of operation.

Experimental environment CentOS-5.5

Experimental Software Nmap-5.00.tar.gz

installation

tar zxvf nmap-5.00.tar.gz

cd nmap-5.00

./configrue


make

make install

Instructions

A ping scan, print out the host to respond to the scan, no further testing (such as port scanning or OS detection):

nmap -sP 192.168.1.0/24

Only lists each host on the specified network does not send any message to the target host:

nmap -sL 192.168.1.0/24

Detection of target host open port, you can specify a comma-separated list of ports (eg -PS22,23,25,80):

nmap -PS 192.168.1.234

Use UDP ping detector:

nmap -PU 192.168.1.0/24

The most frequently used scanning options: SYN scan, also known as semi-open scanning, it does not open a full TCP connection, executes quickly:

nmap -sS 192.168.1.0/24

When SYN scan can not be used when, TCP Connect () scan is the default TCP scan:

nmap -sT 192.168.1.0/24

UDP scanning -sU option, UDP scans to send empty (no data) UDP header to each target port:

nmap -sU 192.168.1.0/24

Determine which target IP protocol support (TCP, ICMP, IGMP, etc.):

nmap -sO 192.168.1.19

Detection of the target host operating systems:

nmap -O 192.168.1.19

nmap -A 192.168.1.19

In addition, nmap official document examples:

nmap -v scanme.

This option scans the host scanme all reserved TCP ports. -v Option to enable the detail mode.

nmap -sS -O scanme./24

Secret SYN scan, the object is 255 hosts "Class C" segment host Saznme located. Also, try to determine the host's operating system for each job type. Because, SYN scan and OS detection, the scan need to have root privileges.

nmap -sV -p 22,53,110,143,4564 198.116.0-255.1-127

Conduct the host list and TCP scanning, the object of class B 188.116 segment 255 8 subnets. This test is used to determine whether the system is running sshd, DNS, imapd or 4564 port. If these ports are open, we will use the version detection to determine which applications are running.

nmap -v -iR 100000 -P0 -p 80

100,000 randomly selected hosts scanning is running Web server (port 80). Sent by the initial stage of probe packets to determine if a host is working very wasteful of time and only detect the host of a port, and therefore prohibits the use -P0 list of hosts.

nmap -P0 -p80 -oX logs / pb-port80scan.xml -oG logs / pb-port80scan.gnmap 216.163.128.20/20

Scan 4096 IP addresses, find the Web server (not ping), to save the results Grep and XML format.

host -l | cut -d -f 4 | nmap -v -iL -

A DNS zone transfer to find the host and the IP addresses to Nmap. The above command for GNU / Linux - when other regional transmission systems have different commands.

other options:

-p (only scan the specified port)

Single port and port range (eg 1-1023) with a hyphen can be. When scanning both TCP port and UDP port scan, you can add the port number before the T: or U: specify the protocol. The agreement is valid until the specified qualifier another. For example, the parameter -p U: 53,111,137, T: 21-25,80,139,8080 will scan UDP ports 53,111, and 137, and TCP port scan listed.

-F (Fast (limited port) scan)
     
         
         
         
  More:      
 
- The temporary operation of the document mkstemp on Linux (Linux)
- IntelliJ IDEA common list of shortcuts (Linux)
- GitLab Installation Guide -Ubuntu 14.04 LTS (Server)
- Windows Desktop use VNC remote connect Linux (Linux)
- The new task parallel library feature in .NET 4.6 (Programming)
- HAProxy Windows version of the compiler and its application in the CORS (Server)
- The simple multi-threaded Python (Programming)
- Why I do not like the Go language style interface (ie Structural Typing) (Programming)
- Oracle database physical file backup / restore (Database)
- Ubuntu Eclipse configuration Gtk + 2.0 libraries (Linux)
- MongoDB 2.6 deployment replica set + partitions (Database)
- Detailed installation OpenCV2.3.1 under CentOS 6.5 (Linux)
- Terminal multiplexing tool tmux use (Linux)
- MongoDB Study Notes (1) - Install MongoDB on Windows systems (Database)
- Bash Automated Customization Linux belongs to its own CentOS system (Linux)
- MongoDB replication instance (Database)
- Java interface (Programming)
- Ubuntu uses under KVM + Qemu virtual machine build (Linux)
- Let the terminal under Mac OS X as like Linux has displayed a variety of colors (Linux)
- Android developers learning Adapter (data adapter) (Programming)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.