联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 网络截获/分析(147) 

[网络截获/分析] WinPcap4.02

winpcap(windows packet capture)是windows平台下一个免费,公共的网络访问系统。开发winpcap这个项目的目的在于为win32应用程序提供访问网络底层的能力。它用于windows系统下的直接的网络编程
winpcap(windows packet capture) It is a free, public network access system on the windows platform. The purpose of developing the WinPcap project is to provide access to the underlying capabilities of the network for Win32 applications. It is used for direct network programming under Windows system (2017-11-25, Visual C++, 1245KB, 下载2次)

http://www.pudn.com/Download/item/id/1511539799609399.html

[网络截获/分析] WinPcap_4_1_3

winpcap(windows packet capture)是windows平台下一个免费,公共的网络访问系统。开发winpcap这个项目的目的在于为win32应用程序提供访问网络底层的能力。它用于windows系统下的直接的网络编程。
WinPcap (Windows packet capture) is a free, public network access system under the windows platform. The purpose of developing the WinPcap project is to provide access to the underlying capabilities of the network for Win32 applications. It is used for direct network programming under the windows system. (2017-06-06, WINDOWS, 838KB, 下载2次)

http://www.pudn.com/Download/item/id/1496711699627950.html

[网络截获/分析] getNetPackage

捕获网络数据包,可以分析包长度,以太网类型,MAC源地址以及帧地址,同时可以分析上层协议,比较基础的网络编程,适合初学者学习参考
Capture network packets, you can analyze packet length, Ethernet type, MAC address and the source address of the frame, while the upper layer protocol analysis, comparison-based network programming for beginners to learn (2014-06-05, Visual C++, 10394KB, 下载20次)

http://www.pudn.com/Download/item/id/2560522.html

[网络截获/分析] ARP-packets-analysis

本课程设计的目的是设计一个系统,它能够实现对网络上的ARP数据包的解析,从而熟悉ARP数据包的结构,对ARP协议有更好的理解和认识。了解并熟悉Microsoft Visual C++ 6.0开发环境的使用,在该软件平台上进行工程的建立和程序开发,理解和掌握C++语言的程序设计和针对一些常用的网络协议的编程。
This course is designed to design a system that enables ARP on the network packet analysis, and thus familiar with the structure of ARP packets on the ARP protocol have a better understanding and awareness. Understand and are familiar with Microsoft Visual C++ 6.0 development environment, the use of the software platforms in the establishment and application development projects, to understand and master the C++ programming language, and for some commonly used network protocol programming. (2011-05-08, Visual C++, 70KB, 下载14次)

http://www.pudn.com/Download/item/id/1522407.html

[网络截获/分析] ArpWorm

黑色技术蠕虫下载者[完整源码] 作者:教主 信息来源:邪恶八进制信息安全团队(www.eviloctal.com) 作者网站:黑色技术 www.Rootkit.com.cn 公开源码用于编程交流。利用此代码修改或传播与作者无任何关系。
Black technology that those who download the worm [complete source] Author: guru information sources: the evil octal information security team (www.eviloctal.com) Author Web site: black www.Rootkit.com.cn open-source technology for the exchange program. Use this code to modify or dissemination without any relationship with the author. (2009-01-23, Visual C++, 3061KB, 下载94次)

http://www.pudn.com/Download/item/id/634975.html

[网络截获/分析] carpolite-unite

在一个圆形操场的四周摆放着n 堆石子。现要将石子有次序地合并成一堆。规定每次只能选相邻的2 堆石子合并成新的一堆,并将新的一堆石子数记为该次合并的得分。试设计一个算法,计算出将n堆石子合并成一堆的最小得分和最大得分。 例如,图1所示的4堆石,每堆石子数(从最上面的一堆数起,顺时针数)依次为4、5、9、4。则3次合并得分总和最小的方案为图2,得分总和最大的方案为图3。 编程任务: 对于给定n堆石子,编程计算合并成一堆的最小得分和最大得分。 Input 输入第1 行是正整数n,1<=n<=100,表示有n堆石子。 第二行有n个数,分别表示每堆石子的个数。 Output 程序运行结束时,输出两行,第1 行中的数是最小得分;第2 行中的数是最大得分。 Sample Input 4 4 4 5 9 Sample Output 43 54
err (2008-11-14, Visual C++, 36KB, 下载14次)

http://www.pudn.com/Download/item/id/579546.html

[网络截获/分析] VC++

VC++编程实现网络嗅探器 从事网络安全的技术人员和相当一部分准黑客(指那些使用现成的黑客软件进行攻击而不是根据需要去自己编写代码的人)都一定不会对网络嗅探器(sniffer)感到陌生,网络嗅探器无论是在网络安全还是在黑客攻击方面均扮演了很重要的角色。通过使用网络嗅探器可以把网卡设置于混杂模式,并可实现对网络上传输的数据包的捕获与分析。此分析结果可供网络安全分析之用,但如为黑客所利用也可以为其发动进一步的攻击提供有价值的信息。可见,嗅探器实际是一把双刃剑。 虽然网络嗅探器技术被黑客利用后会对网络安全构成一定的威胁,但嗅探器本身的危害并不是很大,主要是用来为其他黑客软件提供网络情报,真正的攻击主要是由其他黑软来完成的。而在网络安全方面,网络嗅探手段可以有效地探测在网络上传输的数据包信息,通过对这些信息的分析利用是有助于网络安全维护的。权衡利弊,有必要对网络嗅探器的实现原理进行介绍。 (2008-05-02, Visual C++, 10KB, 下载167次)

http://www.pudn.com/Download/item/id/451177.html
总计:147