摘 要
端口扫描技术是一种融合了信息安全、信息科学、和计算机技术为一体的综合性技术。本系统建立在WINDOWS操作系统上,有Ping 和scan两个模块。可以探测目标主机是否开机和对目标主机的端口信息进行探测,并获取端口是否开放等信息。全文对TCP建立连接的原理,WINSOCK原理,端口扫描技术的基本原理和扫描方式都进行了比较详细的介绍。在具体的实现过程中,结合面向对象的程序设计思想,采用典型的TCP connect()扫描技术。通过本程序的实现,用户可以对一台目标主机进行端口扫描,获取端口信息。
关键词: 端口;探测;扫描
Design and Implementation of a Port Information Probe Tool
Abstract
Scanning technique of port is a Synthetic technique which involves information security, information science, and computer technology .This system is build on the WINDOWS operate system. It has the Ping and scan modules .It can probe into whether a target host is opening and Probe into the port information of the target host, and obtain the information with whether a port is opening. The full text explain in detail with principle of the TCP connection, principle of the WINSOCK, the basic principle of the port scan and the scan method .When implementing, it combine the thought of the face to object, use the typical method which is the TCP connect .Through the realization of this procedure, the user can scan the port with a target host, and obtain information.
Key word: Port;Probe;Scanhttp://www.16sheji8.cn/
目 录
论文总页数:28页
1引言 1
1.1端口信息探测的背景 1
1.2端口信息探测工具的设计要求 1
1.2.1研究内容 1
1.2.2开发工具 1
1.2.3软件功能设计 1
1.3端口信息探测工具的设计原则 1
2理论基础 2
2.1 TCP传输控制协议 2
2.1.1TCP概述 2
2.1.2 TCP首部 2http://www.16sheji8.cn/
2.1.3 TCP连接的建立 3
2.1.4 TCP连接的终止 4
2.2 端口扫描技术 5
2.2.1概述 5
2.2.2端口扫描原理 5
2.2.3端口扫描常用方式介绍 5
2.3 WINSOCK套接字 7
2.3.1 WINSOCK 7
2.3.2 WINSOCK原理 7
2.3.3套接字类型 8
2.3.4使用套接字流程 8
3总体设计 9
3.1模块划分 9http://www.16sheji8.cn/
3.1.1功能模块图 9
3.1.2主要功能模块介绍 9
3.2设计实现流程图 10
4 端口信息探测工具的详细设计与实现 10
4.1 软件界面 10
4.2 PING按钮实现 11
4.2.1 ping按钮实现流程图 11
4.2.2 ping按钮总体实现过程 12
4.3 SCAN按钮实现 13
4.3.1 scan按钮实现流程图 13
4.3.2 scan按钮总体实现过程 14
5软件测试 16
5.1测试的目的和定义 16
5.1.1测试的目的 16
5.1.2测试的定义 17
5.2端口信息探测工具测试计划 17
5.2.1测试环境 17
5.2.2测试项目及说明 17
5.3端口信息探测工具测试计划执行情况 17
5.3.1 ping模块测试结果 17
5.3.2 scan模块测试结果 19
5.4端口信息探测工具需求测试结论 20
5.5评价 20
结 论 20
参考文献 20
附 录 21
致 谢 27
声 明 28
1引言
1.1端口信息探测的背景
信息技术的广泛应用,深刻的改变了人们的生活方式,推动着文明的的进步。随着信息化的普及和发展,互联网覆盖了社会政治,经济,文化,生产的各个领域,网络攻击充斥着大大小小的网络中。无论黑客和红客,应用各种网络攻击方式,对目标方进行,刺探,侦听,欺骗和侵入,已达到己方的目的。而在网络攻击之前,如何有效查知被攻击方的有用信息是必要的不可缺少的,所以端口扫描技术孕育而生。
1.2端口信息探测工具的设计要求
1.2.1研究内容
(1)TCP/IP协议,TCP连接的建立与终止的过程。
(2)WINDOWS网络编程,winsocket的使用。http://www.16sheji8.cn/
(3)端口扫描原理,各种端口扫描方式。
(4)研究对一个端口信息探测工具的需求分析,模块划分,功能实现、开发步骤等,并能够对设计的过程进行总结、说明。