WinPcap is the industry-standard tool for link-layer network access in Windows environments: it allows applications to capture and transmit network packets bypassing the protocol stack.
0
votes
0answers
14 views
Sniffed http request includes garbled chars when printed
I write some C++ code in Visual c++ using WinPcap to sniff http packets on my PC. I strip the IP and TCP headers, and print the chars in TCP body with printf, but I always get these weird garbled ...
0
votes
0answers
10 views
capture from multiple NIC using winPcap
im new to winPcap. I found a sample that capture all udp packets from one NIC
I want to capture udp traffic in all 4 NICs of my compter (ordered by time)
how can i do this? witch part of code i should ...
0
votes
0answers
19 views
winpcap filtering not working for ipv6 host
I'm having trouble compiling a winpcap filter with an IPv6 host.
std::string filter = "host fe80:0:0:0:959e:e0b:4700:4deb";
auto result = pcap_compile(pcapDevice.get(), &filterProgram, ...
0
votes
2answers
27 views
The compatibility issue between NDIS version and Windows version
everyone. I am doing some modifications to the WinPcap, a packet capturing library. My boss want me to transfer the NDIS version of WinPcap from NDIS 4 to NDIS 6. And the compatibility requirement is ...
0
votes
0answers
33 views
Nemesis - Inject TCP packet into an existing connection
I'm running Nemesis under Windows. I have a 3rd client program connected to a server using the TCP protocol. Now I want to inject a packet into that existing connection, so it will looks like the real ...
0
votes
0answers
18 views
How to add wpcap.dll in reference in C#.net?
I was doing a project which will use SharePCap Library. But when I am trying to use it there's an error:
unable to load wpcap dll[wording may not be exactly correct]
Then I installed wpcap from ...
0
votes
1answer
21 views
Capture and forwarding of network traffic from a particular application on Windows
I need to capture network traffic that is going in/out of a particular application. The main issue is that I would like to do this in a blocking fashion -- i.e. capture the traffic, perform some ...
0
votes
1answer
16 views
Integrating nmap and WinPcap to PHP Application
I've done my research on this an still cant find any solution. the closest i have seen so far is Any ideas on how to integrate with nmap programatically? .
I am a php programmer and i'm currently ...
0
votes
1answer
29 views
Is it possible filtering (dropping) packets with Winpcap?
I want to filter (drop) incoming and outgoing packets with Winpcap library.
Is it possible filtering packets with Winpcap?
0
votes
0answers
47 views
WinPcap C++ program no longer compiles in Visual Studio 2010
Ok. So, we've had a project that's worked for a long time, and now today I opened it up, made a change to some file i/o, and tried to compile. I get ton's of errors, and I have no clue why. The ...
0
votes
0answers
36 views
How to find HTTPS packet destination IP by winpcap?
I want to find destination IP of a HTTPS packet by winpcap.IS it possible?I want use winpcap in c++ project.
0
votes
1answer
36 views
ATM pcap file to Ethernet Pcap file
I am looking for .pcap file format of ATM.Its needed in my project.I am looking for mechanism so that ATM pcap file can be converted to Ethernet pcap file
3
votes
0answers
135 views
How can Wireshark effect network traffic?
On our team we have a standardized development setup where we have a Win8 workstation with various VMs running on Hyper-V. All development takes place on a VM.
I was having an issue where I couldn't ...
0
votes
1answer
49 views
Mirror network traffic for traffic interception
I want to develop an application where all traffic from network segment gets mirrored onto a windows station in order to be able to see all tcp-ip request/response data (filtering).
I know that it ...
0
votes
1answer
170 views
ARP poisoning to myself
I'm using PcapDotNet to create ARP poison packets with the next code:
using (PacketCommunicator communicator =
selectedDevice.Open(100, PacketDeviceOpenAttributes.Promiscuous, 1000))
...
2
votes
0answers
151 views
WinPCAP C++ Sending packet
So, I want send packet over TCP by using by pcap_sendpacket
TCP_Packet.Set_Ethernet_Source_MAC(1, 1, 1, 1, 1, 1);
TCP_Packet.Set_Ethernet_Destination_MAC(2, 2, 2, 2, 2, 2);
...
0
votes
2answers
84 views
Make a network interface receive (hear) a packet
I need to make Microsoft Loopback Adapter receive (hear) a packet using PcapDotNet or anything else. How can I do that?
Thanks.
0
votes
0answers
71 views
C++ No member named
So i have this "example" code
Packets.h
#ifndef PACKETS_H_
#define PACKETS_H_
#include <winsock2.h>
typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned int u_int;
...
0
votes
0answers
58 views
NPF Service Failed to Start
I want to install wireshark. When installing winpcap, the sys told me that the NPF driver can not be installed.
I've read some docs to tell me that this situation I have to start NPF service
The "Sc ...
0
votes
1answer
122 views
PacketDotNet problems with CalculateTCPChecksum, ValidTCPChecksum and ValidChecksum
I am trying to do some raw socket programming with TCP protocol, however I am running into an issue with PacketDotNet and TCP checksum.
I am getting nullpointer exceptions within the ...
0
votes
0answers
72 views
Reading pkt_data from winpcap, need a litlle help :)
hey guys im trying to read the pkt_data from winpcap and extract certain information like destination ip, source ip, mac, and other information avaible :) the thing is that after reading the packet ...
0
votes
0answers
184 views
C++ Winpcap modify and send raw arp packet
hey guys im trying to learn about raw networking etc and right now i have my program filter arp packets so that i only read thoose :P what im trying to do is modify the arp packet that just came in ...
0
votes
0answers
84 views
How to avoid packet drops in Wireshark Dump?
I am using wiresharks Dumpcap.exe to capture the packets. I have high network packet flow.
dumpcap.exe -b duration:3 -B 500 -f "(tcp || udp)" -i 1 -P -s 0 -w e:\Packets\h
Above one is the ...
0
votes
0answers
120 views
Eclipse can't find winpcap library
I'm having trouble getting Eclipse to build a project with WinPCap. I manually added the paths wpcap.lib and Packet.lib through the filesystem browser in the project settings dialog. When I build, it ...
1
vote
0answers
107 views
Installing WinPcap on Windows 8
Is there a way to install WinPcap on Windows 8?
Windows refuses the install due to compatibility issues. Tried to set the compatibility mode to "Windows 7" and run as administrator but no luck.
1
vote
1answer
239 views
Changing mac-address of packets with winpcap
I am an absolute beginner with winpcap and c++. I want to read dump files, change the MAC-address(es) of some packets and delete the other packets. So in the end, my file is only supposed to contain ...
0
votes
1answer
75 views
Dos libpcap free memory ifself?
My program use libpcap like this:
while pcaket = pcap_next() {
...
(modify the pcaket and do checksum)
...
pcap_sendpacket(pcaket)
}
Recently, I found there is a memory leak in my ...
1
vote
1answer
180 views
WinPcap filter string syntax error
I am attempting to generate a WinPcap filter from a configuration UI. Right now I have a filter string that looks like this ip && (((ip.src == 10.10.10.10 && (tcp.port == 10 || ...
1
vote
1answer
224 views
How to create child process to execute a method in c#?
I have got an logical bug from winpcap library in reading file from offline dump file. In that they are not closing the file after reading. So i am getting an exception that "failed to open the ...
0
votes
0answers
384 views
How do I remove an old version of WinPcap? [closed]
When installing WinPcap 4.1.2 on Windows 7 I receive the following message
"A previous version of WinPcap has been detected on this system and cannot be
removed because in use by another application. ...
0
votes
1answer
287 views
Jpcap on windows 7 (32 bit)
I have Windows 7 (32 bit) installed on my Laptop. I am running the below code on Eclipse Juno :
import jpcap.JpcapCaptor;
import jpcap.NetworkInterface;
public class Network {
public static ...
0
votes
1answer
591 views
cannot open device using jpcap
I'm having trouble opening found network devices with the jpcap library. I have installed winpcap and have jpcap.dll in system32 and syswow64. The following tutorial code crashes when trying to open ...
0
votes
0answers
54 views
Get Adobe player requested URLs using jNetPcap
I want a method to get the adobe flash player requested URLS.
I can detect the RTMP stream when it open in a browser by monitoring the port 1935.
but i don't know how to get the request urls to ...
1
vote
1answer
107 views
Is the offline filtering in WinPcap thread-safe?
Using WinPcap 4.1.2, I have a need to collect all of the IP-based traffic on a given interface and then filter user-selected TCP- and UDP-based "conversations" for layer 7 processing. Due to the ...
1
vote
1answer
234 views
Packet sniffing and modification
First, why do I need that? I have Wifi network. I want everyone that just connected to wifi first to redirect to login page and then if login is successful - redirect to the page requested. I thought ...
0
votes
1answer
235 views
Winpcap packet forwarding. Java wrapper
I am trying to build a winpcap application capable of sniff traffic of a target host within a switch-based LAN.
To carry out this, I am trying to perform a arp spoofing. This way, messages between ...
0
votes
0answers
94 views
encryption and pcap_sendpacket on wifi
I have a problem, I want to inject some packet on wifi network with pcap_sendpacket() function in Winpcap or libpcap. But I dont know the place of the WPA or WPA2 encryption in this process: are WPA ...
0
votes
1answer
222 views
how does winpcap work?
as you know windows has stopped supporting raw_sockets therefore there is no real solution to use raw_sockets to build a network sniffer. so my question is how exactly Winpcap and similar libraries ...
1
vote
1answer
150 views
How to acquire ethernet label with WinPCap
I'm trying to acquire and parse an ethernet label (dest address, source address, type/length field) using WinPCap.
I'm mostly copying/pasting from the WinPCap SDK. I am trying to store the WinPCap ...
1
vote
1answer
269 views
C# switch - infinite loops with winpcap
I'm making program that should receive packet and send it on the other port on PC (other port is doing the same, also send what he gets), based on MAC address. But when I open device like this:
...
0
votes
1answer
132 views
network adapter counters
I'm writing for a company a software that sends and analyzes raw ethernet packets using winpcap. I'm experiencing seldom packet loss when the software runs over longer time. My environment is rather ...
1
vote
0answers
104 views
pcap_dispatch hangs on
Hi I have a program in which i capture the packets with pcap in python.
filter=some_filter
promiscuous= True
read_timeout= 50 # msec
self.pcap= pcapy.open_live(self.ifname, ...
0
votes
2answers
306 views
Using WinPCap for UDP receiving
I would like to use WinPCap library for "reliable" UDP receiving in my C++ application. All examples that I found, using this library for capturing and then proceding. Is there any way (example) how ...
0
votes
0answers
142 views
How to send a preformed UDP packet to localhost?
Hoping to get some help from the experts here. I have a service, "Listener", that is listing on 0.0.0.0:7070. I have another application, "Agent" that receives fully-formed UDP/IP packets via a ...
0
votes
1answer
169 views
Error getting WinPcap address information
Hello i am having some problem getting network card address information from the WinPcap driver. I have noticed that whenever IPv6 is enabled for a particular NIC, the address information for it ...
0
votes
1answer
168 views
Detecting UDP DoS attack
i am trying to write a program that detects a UDP DoS attack using C++ and WinPcap. What criteria can i use to identify such an attack? I have noticed many UDP DoS generator programs send the same ...
0
votes
0answers
149 views
Compiling winpcap samples with Eclipse
I've done some winpcap development using DevC++ in the past. Recently I wanted to do some new stuff but first I decided to move to Eclipse.
So I downloaded WinPCap devpack (WpdPack) to see if I could ...
2
votes
1answer
513 views
How do I install Net::Pcap for Strawberry Perl in Windows 7?
I try to install Net::Pcap in Windows, but it gives the following error messages:
c:\P P> cpan
cpan> install Net::Pcap
socket.h patched... ok
looking for -lwpcap... yes
checking for ...
0
votes
0answers
113 views
Obtainig Device list by Winpcap v 4.1.2 [Release crash]
I'm trying to generate a release build for a C++ application that I've written. In debug mode allright is ok, but when I'm trying to generate release build I have an crash pcap_findalldevs_ex . This ...
0
votes
1answer
347 views
Capturing packets with nodejs on windows
node.js v0.8.0 , XP / WIN7 (not Cygwin)
google and found node_pcap ( https://github.com/mranney/node_pcap )
but it only support osx and linux.
is there any module for windows?
thanks.
.





