Tagged Questions

This word for wpcap api for packet capturing in windows and gives explaination for wpcap.lib or .dll

learn more… | top users | synonyms

5
votes
7answers
4k views

How do I hook the TCP stack in Windows to sniff and modify packets?

I'd like to write a packet sniffer and editor for Windows. I want to able to see the contents of all packets entering and leaving my system and possibly modify them. Any language is fine but I'd ...
5
votes
4answers
2k views

How to send a WOL package(or anything at all) through a nic which has no IP address?

I'm trying to send a WOL package on all interfaces in order to wake up the gateway(which is the DHCP server, so the machine won't have an IP yet). And it seems that I can only bind sockets to IP and ...
4
votes
4answers
1k views

How to hijack all local http request and extract the url using c?

What direction should I go in(libraries, documents)? UPDATE Can someone illustrate how to use winpcap to do the job? UPDATE 2 How do I verify whether a packet is an HTTP one?
3
votes
3answers
408 views

TCP Connection Hijacking

I have a small project that I've been working on in C++, and due to the nature of what it does, I need to insert packets in to a live TCP stream. (The purpose is innocent enough, ...
3
votes
3answers
1k views

Getting Machine's MAC Address — Good Solution?

I've heard it's not possible with my current library of winpcap. Is this really true? I see lots of examples on the net but then comments saying "This doesn't work". What's the best way to get a ...
3
votes
9answers
5k views

TCP: How are the seq / ack numbers generated?

Greetings and salutations! I am currently working on a program which sniffs TCP packets being sent and received to and from a particular address. What I am trying to accomplish is replying with ...
2
votes
2answers
795 views

Python Packet Sniffer

What Python module should I be using to sniff packets? I don't need anything too complex, I just need to get the data out of some packets being sent to my computer. I am using Python 2.6 and Windows ...
2
votes
3answers
500 views

Get the Network Interface Name in C#

I'm writing a program which uses the wPCAP library. I managed to get out the list of interface names: \Device\NPF_{A9734063-CA83-4D91-A35B-CC727749256A ... Now my question is: how do I know ...
2
votes
2answers
2k views

c# - how to sniff packets in an app without relying on WinPCap?

BACKGROUND: I now understand how to write a C# application that can monitor packets going in/out of the network card on the PC the application is running on. The approach I know relies on ...
2
votes
1answer
249 views

pcap_dump file not opened y Wireshark

I am trying to save the output of this file in libpcap format and although the file does get saved and the right data is written into it, Wireshark is unable to open it. Anyone see what I am missing ...
2
votes
3answers
76 views

how works applications which blocks web sites?

I know only one low-level way of blocking websites - hosts file. However, it is obvious that main stream programs has some other way of achieving this. I have an idea for new model of this kind of ...
2
votes
1answer
517 views

What's pcap_pkthdr there for?

Code snippet from here: void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data) { .... /* retireve the position of the ip header */ ih = ...
2
votes
1answer
249 views

How do I stop the capture using winpcap?

/* start the capture */ pcap_loop(adhandle, 0, packet_handler, NULL); The above starts the capture,but I don't find a way to stop the capture except exit the programe...
2
votes
3answers
256 views

Why winpcap requires both .lib and .dll to run?

Specifications can be seen here: http://www.winpcap.org/docs/docs_40_2/html/group__wpcapsamps.html It's very strange,either .lib or .dll is enough IMO,why does it require both?
2
votes
1answer
1k views

Winpcap MinGW compile error

I'm experimenting with WinPcap 4.1.1 libraries for Windows, but I can't manage to compile even example source provided with the library. I'm getting these errors: 'PCAP_OPENFLAG_PROMISCUOUS' ...
2
votes
3answers
2k views

how to reassemble tcp segment?

im now developing a project using winpcap..as i have known packets being sniffed are usually fragmented packets. how to reassemble this TCP segements?..any ideas, suggestion or tutorials available?.. ...
2
votes
2answers
93 views

how to know which installed devices has internet connection in WINPCAP?

i have known that winpcap library enabled a person to obtain advanced information about installed devices... given all the networking devices found in the computer, how will i know which one of this ...
2
votes
1answer
918 views

Can WinPcap be used to capture network traffic per process?

On Windows I am loading a DLL and running it. The DLL performs a lot of network activities. Now I need to monitor which url and hosts the DLL connects to. I think using a packet sniffer might be a ...
2
votes
3answers
2k views

Could anyone suggest a good packet sniffer class for c++?

Could anyone suggest a good packet sniffer class for c++? Looking for a easy insertable class I can use in my c++ program, nothing complicated.
1
vote
2answers
50 views

How can I open a pcap-ng file in C#

Up to now I have been using WinPcap to open pcap files in C#: [DllImport("wpcap.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)] private extern static IntPtr ...
1
vote
2answers
194 views

Get list of all MAC addresses conected to my router and the IP's

I want to list all the MAC addresses that are connected to my router i know it's possible because i have seen it done. I think all applications use WinPcap for this purpose is there a way i can ...
1
vote
2answers
205 views

Tcp Session Reconstruction with Winpcap

Im trying to reconstruct tcp sessions from my pcap files which have network packets captured using winpcap. I have a project which splits the packets to sessions. So far i can read from pcap files and ...
1
vote
1answer
89 views

How to allocate a memory to send a large pcap file (of size larger than available memory) with high performance using winpcap?

I have used the code from winpcap example to send pcap file(original code from winpcap documenation found at this link) It works fine to send a small pcap files but if I tried to send a large pcap ...
1
vote
2answers
303 views

How to send an ARP Packet through C# with WinPcap

I want to send ARP packet for "ARP Poison Routing" through C#. I am use SharpPcap(for use the winpcap). How to do this with SharpPcap or without SparpPcap (with other library) ?
1
vote
1answer
182 views

WinPcap C# Wrapping pcap_findalldevs() throws PInvokeStackImbalance

Im trying to write a C# wrapper for winpcap. It gives the warning PInvokeStackImbalance when im trying to debug, but pcap_findalldevs does its job. But I think this will cause a memory leak in ...
1
vote
2answers
321 views

Pcap.net vs Sharppcap

I just want to listen a network device, capture packets and write the packets to a dummy file. Also i need to filter packets while listening so ill only write packets which passes the filter. I need ...
1
vote
2answers
133 views

PCap library issue with receive

So I've been having an issue with the receive functionality with the PCap library. I set up an echo server (outside my PC) that just takes a packet and turns it around. So, in my application, I send ...
1
vote
2answers
336 views

Resolving header dependencies in setup.py

I'm having difficulty installing a Python module on Windows. There are dependencies with the libpcap and winpcap libraries. When trying to run 'setup.py' I receive fatal errors and the script ...
1
vote
2answers
183 views

c++ library for parsing packets with winpcap

is there a c++ opensource library for parsing capturing packets with winpcap specificly the tcp header and data ?
1
vote
2answers
347 views

.net packet capture: pcap.net vs sharppcap

interested in any comments anyone has around the various .net tools which can be used for passive packet capture. In terms of winpcap the choice seems to be between pcap.net and sharppcap. Another ...
1
vote
1answer
456 views

send/recv ethernet frame on windows using C++

is there any windows library / kernel-mode driver (with usermode API) in C/C++ which I can use to send/recv ethernet frame without IP (only use mac address). I heard about winpcap, is there any ...
1
vote
1answer
789 views

Using WinPcap in VC++ programs

I am trying to include WinPcap library in one of my Visual C++ program and I am using Visual Studio 10 Ultimate. In the documentation it says To add a preprocessor definition, you must select ...
1
vote
1answer
169 views

WinPcap - LibPcap - packet_handler notification

I am using libpcap (Windows Packet Capturing Library) in C. I was wondering if i could be notified before the packet_handler function is called. Right now packet_handler is called everytime you ...
1
vote
1answer
126 views

Do the functions in libpcap and winpcap have identical names?

Do the functions in libpcap and winpcap have identical names? If not, what names are different, or are the majority of them different? Also, can libpcap++ be used for winpcap?
1
vote
3answers
388 views

Forward UDP packets to several IPs maintaining the original source address

I have a working system that receives data via UDP packets sent to a fixed IP:Port and I want to use a program (some kind of proxy?) to send a copy of those packets to a new IP:Port (or a list of ...
1
vote
5answers
165 views

See what website the user is visiting in a browser independent way

I am trying to build an application that can inform a user about website specific information whenever they are visiting a website that is present in my database. This must be done in a browser ...
1
vote
1answer
145 views

How to ignore own packets by WinPcap?

When I inject any packet via WinPcap it will be captured in this moment. I dont want to capture packets, witch were injected myself. What is the easiest way?
1
vote
0answers
94 views

WinPcap and IP Change

im using WinPcap to listen to Ethernet-Traffic. The Ethernet-Packets contain a speciel Real-Time Protocol. Works great so far, but now I have to change the Ip Address of the adapter, on which pcap is ...
1
vote
1answer
527 views

jNetPcap vs Jpcap

wondering any of you can give me a bit of comments + insights please. In term of performance, which one should I use, jNetPcap or Jpcap? Thanks!
1
vote
1answer
286 views

Capturing DNS responses with PCap.Net?

Q1 - Is it possible to capture DNS request/responses with the library? Q2 - If yes, once I have the packet does anyone have any sample code that shows how I could extract the fields from the DNS ...
1
vote
2answers
680 views

Broadcast a UDP message in LAN with fake source IP with delphi

I want to broadcast a UDP message in my LAN with fake source IP ( spoofing ) 1. Do winpcap able to do this ? 2. Do this work on winxp, win7 ? 3. i'm using delphi, is there any good components ...
1
vote
2answers
245 views

Winpcap saving raw packets not from an adapter

I am trying to build an application that converts my old custom Ethernet logs (bin files) to standard winpcap style logs. The problem is that I can't seem to find an example of how to opening a ...
1
vote
3answers
239 views

How to pass a pointer to a member function to a C function? [closed]

Possible Duplicate: Using a C++ class member function as a C callback function I'm writing an object-oriented library using a C library (winpcap). I need to pass the callback function that ...
1
vote
4answers
886 views

How do I modify a HTTP response packet with winpcap?

There are two problems here: What if content is encoded:gzip... Do I also need to change the header part to make the HTTP packet valid(checksums if any?) UPDATE Can someone with actual experience ...
1
vote
1answer
298 views

How to Generate Raw packets and send to over network in vc++

hai.. how to generate raw pockets and send to another system using winpcap in vc++.i had done capture packets(sniffer) using winpcap in vc++ kindly help me Thanks
1
vote
1answer
87 views

c++ accessed url log

im now currently developing a standalone c++ program that would list all the access URL in a browser and its corresponding response time.... at this point of time, i can already sniff all out and in ...
1
vote
2answers
475 views

Networking — Padding of Data

For a homework assignment, I was tasked with creating a "Ping Pong" layer that sits right above the Ethernet stack. I was able to easily complete the task but when I tested my application over my ...
1
vote
1answer
217 views

WinPCAP And Non-promiscuous compatible mode?

I've heard that winpcap can work on Non-promiscuous wireless adapters. Is this true? Is it worth the trouble to work around or should you just use Ethernet if available?
1
vote
1answer
831 views

Catch network adapter up/down and address changed event (Windows, C#)

I am searching for a method to be notified when any windows network interfaces go up or down or the addresses of any network interfaces are changed. I would prefer solutions in C#, C is also ...
1
vote
2answers
197 views

Which .NET library / wrapper do you recommend for sniffing packets?

As far as I understand all sniffing libraries in .NET just a wrapper around WinpCap, which is OK. If you know any other better option please write as answer. Have you used any of them? Which one is ...

1 2 3