虫虫首页|资源下载|资源专辑|精品软件
登录|注册

winpcap

winpcap(windowspacketcapture)是windows平台下一个免费,公共的网络访问系统。开发winpcap这个项目的目的在于为win32应用程序提供访问网络底层的能力。它用于windows系统下的直接的网络编程。
  • 用javaJPcapwinpcap协议分析

    用java\JPcap\winpcap协议分析

    标签: javaJPcapwinpcap 协议分析

    上传时间: 2016-05-04

    上传用户:hebmuljb

  • vc通过ARP攻击源码

    vc通过ARP攻击源码,用到winpcap,运行环境DOS

    标签: ARP 攻击 源码

    上传时间: 2014-01-17

    上传用户:wanqunsheng

  • 基于HTTP的入侵检测程序

    基于HTTP的入侵检测程序,运行前需先装winpcap

    标签: HTTP 入侵检测 程序

    上传时间: 2014-01-04

    上传用户:zhyiroy

  • 命令行模式下

    命令行模式下,基于winpcap的网络嗅探器,用于学习

    标签: 命令行 模式

    上传时间: 2013-12-19

    上传用户:shawvi

  • In this article, I will explain how to create UDP packets and then send them to a remote server thro

    In this article, I will explain how to create UDP packets and then send them to a remote server through the Internet using winpcap for Windows. The code has been tested to work with Windows XP SP2 and Vista SP1 on Linksys routers, and on Toshiba modems connected directly to the Internet. Please note that the code here is very minimalistic, and can be greatly expanded depending on your needs. The reason I use winpcap in this article is that it solves the issue of Winsock for Windows (XP SP2 and above) not allowing raw UDP packets to be sent (in Linux, you can just use regular sockets). With winpcap, it is possible to specify your own source IP and source hardware addresses in packets.

    标签: article explain packets create

    上传时间: 2013-12-12

    上传用户:x4587

  • wireshark 0.99.7 最新源码

    wireshark 0.99.7 最新源码,协议分析的不二法宝,基于winpcap

    标签: wireshark 99 源码

    上传时间: 2017-07-25

    上传用户:leehom61

  • 使用不同于winsock抓包方法

    使用不同于winsock抓包方法,即winpcap网络数据包进行数据包捕获

    标签: winsock

    上传时间: 2017-07-28

    上传用户:jcljkh

  • 一、实现 Sniffer 的基本功能。 Sniffer 是一种用于监测网络性能、使用情况的工具。  能够指定需要侦听的网卡(考虑一台机器上多张网卡的情况)  能

    一、实现 Sniffer 的基本功能。 Sniffer 是一种用于监测网络性能、使用情况的工具。  能够指定需要侦听的网卡(考虑一台机器上多张网卡的情况)  能够侦听所有进出本主机的数据包,解析显示数据包( ICMP 、 IP 、 TCP 、 UDP 等)各个字段。比如,对 IP 头而言,需要显示 版本、头长度、服务类型、数据包长度、标识、 DF/MF 标志、段内偏移、生存期、协议类型、源目的 IP 地址、选项内容、数据内容。要求显示数据的实际含义(例如用 ASCII 表示);  能够侦听来源于指定 IP 地址的数据包,能够侦听指定目的 IP 地址的数据包,显示接收到的 TCP 和 UDP 数据包的全部实际内容。需要考虑一个 TCP 或 UDP 包划分为多个 IP 包传输的情况;  能够根据指定的协议类型来过虑包,例如,只侦听 ICMP 包,或只侦听 ICMP 和 UDP 包。  功能验证手段:在运行 Sniffer 的同时,执行标准的 Ping 、 Telnet 和浏览网页等操作,检查 Sniffier 能否返回预期的结果。 Windows 平台上可以用 winpcap 类库;在 linux 平台上可以使用 libpcap 类库。也可以调用 Sockets 等有关的网络类库。

    标签: Sniffer 61548 网卡 监测网络

    上传时间: 2017-09-09

    上传用户:siguazgb

  • SharpPcap c#抓包实现时时获取网卡信息

    SharpPcap c#抓包实现时时获取网卡信息 SharpPcap tutorial: a step by step guide to using SharpPcap The text of this tutorial is taken directly from winpcap's official tutorial but is modified to show the C# use of the SharpPcap library. All examples can be downloaded together with SharpPcap source code from SharpPcap 's homepage. The winpcap library must be installed before attempting to run any of these examples, so please download and install the latest version from winpcap's download page. SharpPcap was written and tested using .NET v1.1 and Windows 2000/XP. I have no idea about other .NET and Windows versions. If you do try it, please report your results. The following topics are covered in this tutorial: Obtaining the device list Obtaining advanced information about installed devices Opening an adapter and capturing packets Capturing packets without the event handler Filtering the traffic Interpreting the packets Handling offline dump files Sending Packets Gathering Statistics on the network traffic 1. Obtaining the device list

    标签: SharpPcap c#抓包 获取网卡信息

    上传时间: 2015-07-06

    上传用户:muzongda

  • FPGA与PC间基于PCIe和千兆以太网的通信设计

    1.深入研究PCIe和千兆以太网,了解PCIe和千兆以太网的技术优势,具体分析PCle和千兆以太网的传输协议,详细说明PCleTLP数据包格式和以太网标2.完成PCIe DMA数据传输系统设计。设计方案主要包括两大部分,分别是FPGA端Verilog逻辑模块开发以及PC端的驱动和C应用程序开发。FPGA端基于PCle IP Core完成了发送接收引擎模块、寄存器读写控制模块和FIFO读写控制模块的设计。定义了相应模块的接口,并分析了数据传输的时序。PC端采用WinDriver进行PCle的驱动开发,并根据WinDriver提供的驱动API函数完成C应用程序的设计。3.完成千兆以太网数据传输系统设计。设计方案也主要包括两大部分,分别是FPGA端Verilog逻辑模块开发以及PC端winpcap应用程序开发。FPGA端基于嵌入式三态以太网MACIPCore,设计了发送接收引擎模块、FIFO读写控制模块和物理接口模块。定义了相应模块的接口,并分析了数据传输经过Locallink接口和Client用户接口上的传输时序。PC端采用winpcap提供的网络编程完成了C应用程序的设计,实现了捕获FPGA端发送的数据包以及发送原始数据包至FPGA端的功能。4.PCIe DMA数据传输系统和千兆以太网数据传输系统在Xilinx ML507开发板上进行了性能测试。记录FPGA与PC间进行读写测试的结果,验证这两个系统的可用性和稳定性,最后分析了影响系统传输速率的原因以及系统目前仍存在的不足。

    标签: fpga pc pcie 以太网 通信

    上传时间: 2022-07-11

    上传用户:xsr1983