1 / 21
文档名称:

网络嗅探器的设计与实现.doc

格式:doc   大小:162KB   页数:21页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

网络嗅探器的设计与实现.doc

上传人:qiang19840906 2018/1/26 文件大小:162 KB

下载得到文件列表

网络嗅探器的设计与实现.doc

相关文档

文档介绍

文档介绍:网络嗅探器的设计与实现
摘要
随着网络技术的发展和网络应用的普及,越来越多的信息资源放在了互联网上,网络的安全性和可靠性显得越发重要。因此,对于能够分析、诊断网络,测试网络性能与安全性的工具软件的需求也越来越迫切。网络嗅探器具有两面性,攻击者可以用它来监听网络中数据,达到非法获得信息的目的,网络管理者可以通过使用嗅探器捕获网络中传输的数据包并对其进行分析,分析结果可供网络安全分析之用。
本文对网络嗅探技术进行了简要分析,研究了网络数据包的捕获机制,如winpcap、原始套接字。文中首先分析了嗅探的原理和危害,并介绍了几种常见的嗅探器,然后研究了入侵检测系统中使用的包捕获技术。本文利用原始套接字在windows平台下实现了一个网络嗅探器程序,完成了对数据包进行解包、分析数据包的功能。
关键词:网络嗅探器;数据包捕获;数据包分析;原始套接字
Design and Realization work Sniffer
Abstract
Along with the development work technologies and the popularization work applications, more and more information resources are put on . work security and reliability e important increasingly. Therefore, the demand of the software tools which could analyze, diagnosis and work performance or security are more and more pressing. Network sniffer has two sides. An attacker can use it to work data, to achieve the purpose for obtaining information illegally, work managers can use it to capture and analyze the data which transmitted work. The result of analysis can be used to analyze work security.
This thesis briefly analyzed the technology work sniffer, and researched the capture mechanism work data packets such as winpcap and raw socket. This paper first analyzed the theory and the harm of sniffer, introduced mon sniffers, and then researched the capture technology which used in the intrusion detection system. The thesis uses raw sockets on windows platform to realize one sniffer which plete unpack and analyze data packet.
Key words: network sniffer; capture data packet; analyze data capture; raw sockets
目录
论文总页数:25页
1 引言 1
网络安全的现状 1
计算机网络安全的问题 1
网络安全机制及技术措施 1
2
3
2 网络嗅探器的基本原理 3
3
嗅探器实现基础 3
常见的sniffer 4
数据包捕获机制的研究 4
WinPcap包捕获机制 5
套接字包捕获机制 6
嗅探器的两面性 8
sinffer的危害 8
通过网络嗅探进行网络管理 9
3 入侵检测系统与嗅探器 9
入侵检测概念 9
入侵检测的实现与嗅探器 10
入侵检测的实现与嗅探器的关系 11
数据包嗅探技术在入侵检测系统中的应用 11
4 嗅探器的实现与测试 12
12
嗅探器的具体实现原理 13