实例介绍
一种基于WinPcap的协议分析器。能够监听所有数据包,以及监听指定IP地址的数据包;能够显示完整的IP数据包信息,例如,版本、首部长度、数据包长度、数据包类型(协议字段)、TTL、源IP地址、目的IP地址等;能够自动提取FTP的用户名和密码; 能够将监听到的数据包信息保存到文件中,以及从文件中读取并显示数据包信息;具有图形化操作界面。
【实例截图】
【核心代码】
WinShark_v3_1_3
└── WinShark_v3_1
├── Debug
│ ├── SavedData
│ │ ├── 20121213 123259.lix
│ │ ├── 20121213 123333.lix
│ │ ├── 20121213 125059.lix
│ │ ├── 20121213 125130.lix
│ │ ├── 20121213 125344.lix
│ │ ├── 20121213 125742.lix
│ │ ├── 20121213 201521.lix
│ │ ├── 20121213 202258.lix
│ │ ├── 20121213 202318.lix
│ │ ├── 20121213 202340.lix
│ │ ├── 20121213 202359.lix
│ │ └── 20121213 202448.lix
│ ├── WinShark_v3_1.exe
│ ├── WinShark_v3_1.ilk
│ └── WinShark_v3_1.pdb
├── ipch
│ └── winshark_v3_1-d82ef4ba
│ └── winshark_v3_1-c150478b.ipch
├── WinShark_v3_1
│ ├── Analytical.cpp
│ ├── Analytical.h
│ ├── Debug
│ │ ├── Analytical.obj
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── link.10284-cvtres.read.1.tlog
│ │ ├── link.10284-cvtres.write.1.tlog
│ │ ├── link.10284.read.1.tlog
│ │ ├── link.10284.write.1.tlog
│ │ ├── link.11236-cvtres.read.1.tlog
│ │ ├── link.11236-cvtres.write.1.tlog
│ │ ├── link.11236.read.1.tlog
│ │ ├── link.11236.write.1.tlog
│ │ ├── link.12764-cvtres.read.1.tlog
│ │ ├── link.12764-cvtres.write.1.tlog
│ │ ├── link.12764.read.1.tlog
│ │ ├── link.12764.write.1.tlog
│ │ ├── link.14564-cvtres.read.1.tlog
│ │ ├── link.14564-cvtres.write.1.tlog
│ │ ├── link.14564.read.1.tlog
│ │ ├── link.14564.write.1.tlog
│ │ ├── link.16208-cvtres.read.1.tlog
│ │ ├── link.16208-cvtres.write.1.tlog
│ │ ├── link.16208.read.1.tlog
│ │ ├── link.16208.write.1.tlog
│ │ ├── link.19048-cvtres.read.1.tlog
│ │ ├── link.19048-cvtres.write.1.tlog
│ │ ├── link.19048.read.1.tlog
│ │ ├── link.19048.write.1.tlog
│ │ ├── link.2360-cvtres.read.1.tlog
│ │ ├── link.2360-cvtres.write.1.tlog
│ │ ├── link.2360.read.1.tlog
│ │ ├── link.2360.write.1.tlog
│ │ ├── link.3160-cvtres.read.1.tlog
│ │ ├── link.3160-cvtres.write.1.tlog
│ │ ├── link.3160.read.1.tlog
│ │ ├── link.3160.write.1.tlog
│ │ ├── link.4032-cvtres.read.1.tlog
│ │ ├── link.4032-cvtres.write.1.tlog
│ │ ├── link.4032.read.1.tlog
│ │ ├── link.4032.write.1.tlog
│ │ ├── link.4612-cvtres.read.1.tlog
│ │ ├── link.4612-cvtres.write.1.tlog
│ │ ├── link.4612.read.1.tlog
│ │ ├── link.4612.write.1.tlog
│ │ ├── link.8420-cvtres.read.1.tlog
│ │ ├── link.8420-cvtres.write.1.tlog
│ │ ├── link.8420.read.1.tlog
│ │ ├── link.8420.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── mt.command.1.tlog
│ │ ├── mt.read.1.tlog
│ │ ├── mt.write.1.tlog
│ │ ├── rc.command.1.tlog
│ │ ├── rc.read.1.tlog
│ │ ├── rc.write.1.tlog
│ │ ├── stdafx.obj
│ │ ├── vc100.idb
│ │ ├── vc100.pdb
│ │ ├── WinShark_v3_1Dlg.obj
│ │ ├── WinShark_v3_1.exe.embed.manifest
│ │ ├── WinShark_v3_1.exe.embed.manifest.res
│ │ ├── WinShark_v3_1.exe.intermediate.manifest
│ │ ├── WinShark_v3_1.lastbuildstate
│ │ ├── WinShark_v3_1.log
│ │ ├── WinShark_v3_1_manifest.rc
│ │ ├── WinShark_v3_1.obj
│ │ ├── WinShark_v3_1.pch
│ │ └── WinShark_v3_1.res
│ ├── Include
│ │ ├── bittypes.h
│ │ ├── bucket_lookup.h
│ │ ├── count_packets.h
│ │ ├── Devioctl.h
│ │ ├── Gnuc.h
│ │ ├── ip6_misc.h
│ │ ├── memory_t.h
│ │ ├── normal_lookup.h
│ │ ├── Ntddndis.h
│ │ ├── Ntddpack.h
│ │ ├── Packet32.h
│ │ ├── pcap-bpf.h
│ │ ├── pcap.h
│ │ ├── pcap-int.h
│ │ ├── pcap-stdinc.h
│ │ ├── remote-ext.h
│ │ ├── tcp_session.h
│ │ ├── time_calls.h
│ │ ├── tme.h
│ │ └── Win32-Extensions.h
│ ├── Lib
│ │ ├── libpacket.a
│ │ ├── libwpcap.a
│ │ ├── Packet.lib
│ │ └── wpcap.lib
│ ├── Protocol.h
│ ├── ReadMe.txt
│ ├── res
│ │ ├── WinShark_v3_1.ico
│ │ └── WinShark_v3_1.rc2
│ ├── resource.h
│ ├── SavedData
│ │ ├── 20121211 212624.lix
│ │ ├── 20121211 212646.lix
│ │ ├── 20121211 212756.lix
│ │ ├── 20121211 213225.lix
│ │ ├── 20121211 213246.lix
│ │ ├── 20121211 213458.lix
│ │ ├── 20121211 214431.lix
│ │ ├── 20121211 215138.lix
│ │ ├── 20121211 215153.lix
│ │ ├── 20121211 215214.lix
│ │ ├── 20121211 215237.lix
│ │ ├── 20121211 215358.lix
│ │ ├── 20121211 215541.lix
│ │ ├── 20121211 220042.lix
│ │ ├── 20121211 220600.lix
│ │ ├── 20121211 220949.lix
│ │ ├── 20121211 221204.lix
│ │ ├── 20121211 221752.lix
│ │ ├── 20121211 224159.lix
│ │ ├── 20121211 224231.lix
│ │ ├── 20121211 230706.lix
│ │ ├── 20121211 230804.lix
│ │ ├── 20121211 230902.lix
│ │ ├── 20121211 231323.lix
│ │ ├── 20121211 231333.lix
│ │ ├── 20121211 231407.lix
│ │ ├── 20121211 235122.lix
│ │ ├── 20121211 235222.lix
│ │ ├── 20121211 235244.lix
│ │ ├── 20121211 235405.lix
│ │ ├── 20121212 000141.lix
│ │ ├── 20121212 000300.lix
│ │ ├── 20121212 000625.lix
│ │ ├── 20121212 000846.lix
│ │ ├── 20121212 001017.lix
│ │ ├── 20121212 001052.lix
│ │ ├── 20121212 001118.lix
│ │ ├── 20121212 001141.lix
│ │ ├── 20121212 001258.lix
│ │ ├── 20121212 001302.lix
│ │ ├── 20121212 002107.lix
│ │ ├── 20121212 002611.lix
│ │ ├── 20121212 002634.lix
│ │ ├── 20121212 002728.lix
│ │ ├── 20121212 003209.lix
│ │ ├── 20121212 003236.lix
│ │ ├── 20121212 003402.lix
│ │ ├── 20121212 003454.lix
│ │ ├── 20121212 004256.lix
│ │ ├── 20121212 004448.lix
│ │ ├── 20121212 004508.lix
│ │ ├── 20121212 004639.lix
│ │ ├── 20121212 005346.lix
│ │ ├── 20121212 005628.lix
│ │ ├── 20121212 010735.lix
│ │ ├── 20121212 010829.lix
│ │ ├── 20121212 010858.lix
│ │ ├── 20121212 011001.lix
│ │ ├── 20121212 011051.lix
│ │ ├── 20121212 011140.lix
│ │ ├── 20121212 011325.lix
│ │ ├── 20121212 011358.lix
│ │ ├── 20121212 012140.lix
│ │ ├── 20121212 012335.lix
│ │ ├── 20121212 012535.lix
│ │ ├── 20121212 012555.lix
│ │ ├── 20121212 012610.lix
│ │ ├── 20121212 012625.lix
│ │ ├── 20121212 013012.lix
│ │ ├── 20121212 013107.lix
│ │ ├── 20121212 013221.lix
│ │ ├── 20121212 013237.lix
│ │ ├── 20121212 013253.lix
│ │ ├── 20121212 013551.lix
│ │ ├── 20121212 013644.lix
│ │ ├── 20121212 013838.lix
│ │ ├── 20121213 185839.lix
│ │ ├── 20121213 190739.lix
│ │ ├── 20121213 190747.lix
│ │ ├── 20121213 191018.lix
│ │ ├── 20121213 191024.lix
│ │ ├── 20121213 191145.lix
│ │ ├── 20121213 192142.lix
│ │ ├── 20121213 192706.lix
│ │ ├── 20121213 192957.lix
│ │ ├── 20121213 194025.lix
│ │ ├── 20121213 194317.lix
│ │ ├── 20121213 194751.lix
│ │ ├── 20121213 231101.lix
│ │ ├── 20121213 235516.lix
│ │ ├── 20121213 235734.lix
│ │ ├── 20121214 000215.lix
│ │ ├── 20121214 000241.lix
│ │ ├── 20121214 000333.lix
│ │ ├── 20121214 000403.lix
│ │ ├── 20121214 000541.lix
│ │ ├── 20121214 000558.lix
│ │ ├── 20121214 000617.lix
│ │ ├── 20121214 000827.lix
│ │ ├── 20121214 000838.lix
│ │ ├── 20121214 001118.lix
│ │ ├── 20121214 001126.lix
│ │ ├── 20121214 001140.lix
│ │ ├── 20121214 001152.lix
│ │ ├── 20121214 001235.lix
│ │ ├── 20121214 001254.lix
│ │ ├── 20121214 001319.lix
│ │ ├── 20121214 001337.lix
│ │ ├── 20121214 001723.lix
│ │ ├── 20121214 001732.lix
│ │ ├── 20121214 001759.lix
│ │ ├── 20121214 001824.lix
│ │ ├── 20121214 001846.lix
│ │ ├── 20121214 001859.lix
│ │ └── 20121214 004526.lix
│ ├── stdafx.cpp
│ ├── stdafx.h
│ ├── targetver.h
│ ├── WinShark_v3_1.aps
│ ├── WinShark_v3_1.cpp
│ ├── WinShark_v3_1Dlg.cpp
│ ├── WinShark_v3_1Dlg.h
│ ├── WinShark_v3_1.h
│ ├── WinShark_v3_1.rc
│ ├── WinShark_v3_1.vcxproj
│ ├── WinShark_v3_1.vcxproj.filters
│ └── WinShark_v3_1.vcxproj.user
├── WinShark_v3_1.sdf
├── WinShark_v3_1.sln
└── WinShark_v3_1.suo
11 directories, 249 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论