加入收藏 | 设为首页 | 会员中心 | 我要投稿 PHP编程网 - 黄冈站长网 (http://www.0713zz.com/)- 数据应用、建站、人体识别、智能机器人、语音技术!
当前位置: 首页 > 服务器 > 搭建环境 > Linux > 正文

NMAP - A Stealth Port Scanner--reference

发布时间:2021-01-24 22:46:11 所属栏目:Linux 来源:网络整理
导读:副标题#e# http://nmap.org/bennieston-tutorial/ Nmap is a free,open-source port scanner available for both UNIX and Windows. It has an optional graphical front-end,NmapFE,and supports a wide variety of scan types,each one with different be
副标题[/!--empirenews.page--]

http://nmap.org/bennieston-tutorial/

Nmap is a free,open-source port scanner available for both UNIX and Windows. It has an optional graphical front-end,NmapFE,and supports a wide variety of scan types,each one with different benefits and drawbacks.

This article describes some of these scan types,explaining their relative benefits and just how they actually work. It also offers tips about which types of scan would be best against which types of host.

The article assumes you have Nmap installed (or that you know how to install it. Instructions are available on the Nmap website,http://www.insecure.org/nmap/install/inst-source.html?),and that you have the required privileges to run the scans detailed (many scans require root or Administrator privileges).

A frequently asked questions section has been added since the first version of this article,and this is included as the last section in this version. This is a fully revised and updated version of this tutorial,re-typed and converted to a TeX format,allowing more output formats to be utilised. At the time of writing,the latest Nmap version was 4.11.

This information is provided to assist users of Nmap in scanning their own networks,or networks for which they have been given permission to scan,in order to determine the security of such networks. it is not intended to assist with scanning remote sites with the intention of breaking into or exploiting services on those sites,or for imformation gathering purposes beyond those allowed by law. I hereby disclaim any responsibility for actions taken based upon the information in this article,and urge all who seek information towards a destructive end to reconsider their life,and do something constructive instead.

The two basic scan types used most in Nmap are TCP connect() scanning [-sT] and SYN scanning (also known as half-open,or stealth scanning) [-sS].

These two types are explained in detail below.

These scans are so called because UNIX sockets programming uses a system call named?connect()?to begin a TCP connection to a remote site. If?connect()succeeds,a connection was made. If it fails,the connection could not be made (the remote system is offline,the port is closed,or some other error occurred along the way). This allows a basic type of port scan,which attempts to connect to every port in turn,and notes whether or not the connection succeeded. Once the scan is completed,ports to which a connection could be established are listed as?open,the rest are said to be closed.

This method of scanning is very effective,and provides a clear picture of the ports you can and cannot access. If a connect() scan lists a port as open,you can definitely connect to it - that is what the scanning computer just did! There is,however,a major drawback to this kind of scan; it is very easy to detect on the system being scanned. If a firewall or intrusion detection system is running on the victim,attempts to connect() to every port on the system will almost always trigger a warning. Indeed,with modern firewalls,an attempt to connect to a single port which has been blocked or has not been specifically "opened" will usually result in the connection attempt being logged. Additionally,most servers will log connections and their source IP,so it would be easy to detect the source of a TCP connect() scan.

For this reason,the TCP Stealth Scan was developed.

I’ll begin this section with an overview of the TCP connection process. Those familiar with TCP/IP can skip the first few paragraphs.

When a TCP connection is made between two systems,a process known as a "three way handshake" occurs. This involves the exchange of three packets,and synchronises the systems with each other (necessary for the error correction built into TCP. Refer to a good TCP/IP book for more details.

The system initiating the connection sends a packet to the system it wants to connect to. TCP packets have a header section with a?flags?field. Flags tell the receiving end something about the type of packet,and thus what the correct response is.

Here,I will talk about only four of the possible flags. These are SYN (Synchronise),ACK (Acknowledge),FIN (Finished) and RST (Reset). SYN packets include a TCP sequence number,which lets the remote system know what sequence numbers to expect in subsequent communication. ACK acknowledges receipt of a packet or set of packets,FIN is sent when a communication is finished,requesting that the connection be closed,and RST is sent when the connection is to be reset (closed immediately).

To initiate a TCP connection,the initiating system sends a SYN packet to the destination,which will respond with a SYN of its own,and an ACK,acknowledging the receipt of the first packet (these are combined into a single SYN/ACK packet). The first system then sends an ACK packet to acknowledge receipt of the SYN/ACK,and data transfer can then begin.

(编辑:PHP编程网 - 黄冈站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

热点阅读