The packet-capture tag has no wiki summary.
0
votes
1answer
25 views
Traceroute and packet capture
The following code is required to capture the route taken by a packet as it moves from the local router to destination router. It should print all the intermediate routers and its ip addresses. The ...
0
votes
0answers
41 views
C# SharpPCap Read Packet Content
i'm tryin' to read the content of the packets that i've captured with SharpPCap.
This is my little code
private void button4_Click(object sender, EventArgs e)
{
// Retrieve the ...
1
vote
1answer
38 views
filtering packets from a specific ip using perl and Net::Pcap and Net::PcapUtils
I've been trying to write a script that filters packets out of a device and from a specific ip address over that device.
I want data to be like the output i get from wireshark when you select a ...
0
votes
0answers
23 views
Best way to parse pcap files in python / alternatives to dpkt
I'm experimenting with parsing network-captures in python and found dpkt very easy to use. However it fails horribly when trying to parse pcap-ng-files or capture-files with manipulated headers (i.e. ...
0
votes
0answers
14 views
Actual Destination IP instead of Proxy's IP in traffic capture [migrated]
I want to capture the network traffic of my host through wireshark and need to get the source and destination ip addresses from the packets. The problem I am facing is that I am behind Proxy Server ...
0
votes
0answers
24 views
oRTP for RTP session capture - feeding captured RTP packets to oRTP
I'd like to use the oRTP library (from the linphone project) for capturing VOIP call audio. I'm capturing RTP packets using libpcap/winpcap library and would like to forward these packets to oRTP for ...
1
vote
1answer
31 views
How to read packet saved in a file with Python?
I have a C++ code that generates an IP Packet Header. The code use a struct representing each field in the packet:
struct cip {
uint8_t ip_hl:4, /* both fields are 4 bytes */
...
3
votes
1answer
259 views
Scapy fails to sniff packets when using multiple threads
I'll try to demonstrate my problem with a simplified example.
Following is a very simple (single threaded) packet sniffer (ICMP):
from scapy.all import *
m_iface = "wlan0"
m_dst = "192.168.0.1"
...
0
votes
0answers
37 views
Replicating and modifying EAPOL packets using Scapy
For a semester project (802.1x security + scapy has to be used), I want to create an exercise where I take the information from a captured 4-way handshake and inject the information from the 2 packets ...
0
votes
1answer
34 views
Ns-3 Distributed Coordination Function and Collision Avoidance
I am new to NS-3 and I have a UDP WiFi simulation that works fine. I need to expand my simulation by enabling Distributed Coordination Function with Collision Avoidance. Can someone please explain to ...
-1
votes
0answers
27 views
Packet Capturing In Awkward Environment [closed]
So I have a 7800N Billion router and I was digging around to see if it could mirror packets, unfortunately I couldn't find a way.
My issue is that I wish to monitor network traffic from a device ...
0
votes
0answers
22 views
Fix PCAP file bad Checksum via Bit-Twist?
i have some PCAP files with bad checksum that i want to fix, is it possible to do it with Bit-Twist ?
0
votes
1answer
97 views
NS-3 trace file packet ID
I have a simple point to point UDP WiFi simulation in NS-3 that outputs data to a trace file. It provides lots of useful data but there is no information that gives a unique ID for each packet. I ...
0
votes
0answers
6 views
API to get packet sizes exchanged between client application and server
I am interested in building an application which can record all packet sizes of all packets exchanged between client and server for a given site as well as modify packet size on the fly.
Please ...
0
votes
0answers
39 views
TCPRewrite issue when replacing endpoints
I am having an issue when I try to replace the endpoints in my PCAP. I use the command
tcprewrite --endpoints=172.16.2.25:172.16.1.25 --cachefile=test.cache --infile=test.pcap --outfile=test2.pcap ...
0
votes
1answer
54 views
how to dynamically modify the filter in tcpdump
I am modifying tcpdump to dynamically change the filter that it uses to get the output from.
currently the tcpdump uses the pcap_set_filter to actually prepare the filter for the incoming packets or ...
0
votes
1answer
209 views
How to capture / grab frames from the video stream?
In my case, the video stream is from Android MediaRecorder. [Update] From some online information, the video stream normally can be fed in fd in the function setOutputFile(FileDescriptor fd).
A post ...
-4
votes
1answer
51 views
how to capture packets of Hotspot Shield in C programming
As you know Hotspot shield and other free proxy applications like U1207.exe
I want to capture packet of Of these applications
0
votes
0answers
36 views
Using jpcap to forge an ARP request
I there a way to use JPCAPto forge ARP Packet and change its data content if so how ? if not please tell me of a way?
does WINPCAP provide this functionality ? so i can use JNA/I.
0
votes
1answer
121 views
JpcapCaptor, NetworkInterface in Jpcap package
I have dowloaded a jpcap package from http://sourceforge.net/projects/jpcap/
I have copied the jar file in ext of jre and jdk and also copied the folder in bin of jdk. but when i run my code it shows ...
0
votes
1answer
135 views
Monitoring incoming and outgoing trafic from browsers/skype/icq/yahoo/messenger etc
I am looking to build an application that monitors all traffic from social programs like skype/icq/yahoo/messenger, that means whats being sent and whats being received. This will also later include ...
0
votes
1answer
54 views
Spying udp packets in windows with wireshark
I have to capture udp packets coming and leaving port 44301 and 45301. Problem is that my process manager says that there is packet transfer in and out, but my wireshark doesn't find that udp ...
0
votes
0answers
113 views
print source and dest IP address in stdout using libtrace
I want to use libtrace library and write src and dest IP address in outline.I use this code:
struct sockaddr *sourceip=NULL;
struct sockaddr *s2=NULL;
s2= ...
6
votes
2answers
166 views
Is it possible to use packet_mmap on linux without root access?
Linux has a feature to allow efficient capture of network packets by mmapping a shared buffer between the kernel and user. I'm trying to use this interface in a way that does not require root access ...
0
votes
2answers
232 views
Why is getDeviceList() method in jpcap.JpcapCaptor class native in JEthereal?
I recently downloaded the JEthereal.jar file to capture packet traffic on my internet connection through JEthereal and also to study it. It reads the packets from a .pcap file just fine but on trying ...
0
votes
1answer
43 views
tcpdump slowed down by… its own filter?
Do long BPF filters slow down tcpdump?
I replay a packet trace where all the packets have ttl=k and wait for ICMP messages back. What I've been noticing is that if I use the following filter (on ...
0
votes
2answers
156 views
How to program an http tunnel
I basically want to capture all the packets in a selected port and transfer them through HTTP.
What is the best way of doing that?
Should I use a packet capture program like SharpPcap for that?
...
4
votes
0answers
92 views
localhost icmp packet found in capture file: why?
Here's my tcpdump filter (ip[8] is the IP ttl field and icmp[0]=11 corresponds to time-exceeded ICMP messages):
(ip and ip[8]=2 and src host $myIPAddress) or (icmp and dst host $myIPAddress and ...
0
votes
0answers
25 views
Is it possible to prioritize the downloading sequence of web resources in a page?
I am working on Selenium to automate testing of our site urls.....& using IE web driver.
I am interested in particular urls, having some special string, for ex. "*/a/b/c/*test.html" to capture ...
0
votes
0answers
124 views
dhcp request with different IP than it was on the dhcp offer
can anyone shed any hints to why the IP address which was offered to the client is different in the dhcp request from the client? they all have the same transanction id, so its definitely the same ...
0
votes
0answers
110 views
Would a Winsock wrapper (SIO_RCVALL) for Windows Phone 8 allow packet capture
I've spent the whole day trying to find a winsock wrapper project to compile in C#. Not in x86, but rather for Windows Phone 8. All solutions I've found are only linked for x86.
The reason is because ...
0
votes
1answer
72 views
two instances of tcpdump at the same time?
Are there any known problems in running two instances of tcpdump at the same time on the same network interface (with non-conflicting filters)?
I'm experiencing some weird timestamping and I thought ...
0
votes
1answer
102 views
Fetching Source IpAddress of the broadmessage meesage recieved on port 137
I am trying to fetch the IP address from the broadcast packets sent by a DSL modem and received on port 137 using UDP protocol. I am able to read the IP address when connectivity is present.
However, ...
1
vote
1answer
149 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 || ...
0
votes
2answers
123 views
Finding the direction of packets while sniffing
I want to have a list of source IP addresses of an interface outbound traffic. How could I find the direction of a packet whether it's inbound or outbound reading traffic using libpcap? I don't know ...
0
votes
1answer
109 views
RawCap sniffer results in empty pcap file
So... I'm attempting to use RawCap to capture traffic to localhost
When I run rawcap, it reports packets in the cmd prompt - but the dump file is always empty.
Any ideas (I've tried running with ...
0
votes
2answers
100 views
c - remove first 4 bytes of data
I'm reading a packet but I need to strip the first four bytes and the last byte from the packet to get what I need, how would you go about doing this in C?
/* Build an input buffer of the incoming ...
1
vote
3answers
203 views
Reading outgoing packets from selected process
Is it possible to read outgoing packets from selected process in C#? If yes, what api should I use?
Thanks in advance.
0
votes
0answers
121 views
how can i fix JPCAP exception?
I want to check packet details in my machine. i have checked some where after i founf jpcap.
Then i have installed following thing and following stpes.
1. Install the prerequisite tools:
a.Get the ...
0
votes
1answer
98 views
Capturing data being transmitted from a mobile by an app or webpage
I'm writing an Android app and I want to capture the receipt data from some shopping websites/apps.
Here's the functionality I am trying to achieve -
User visits GenericShoppingWebsite
User does ...
1
vote
0answers
42 views
How to automate testing of audio quality across a network?
I am working with a team developing a C++ application for making audio calls.
I am new to the team and will be involved in testing the app. I have experience with C++ but have no idea how one would ...
0
votes
0answers
280 views
My java code is not capturing packets from the interface card
I have a packet sniffer in java .It has apparently no error and runs correctly but in the end it captures no packet. If i run wieshark it capture packets and shows them as well. I have jpcap library ...
0
votes
0answers
80 views
Having exception regarding packet buffer JNETPCAP
Hi I was using this example for offline packet capture using JNETPCAP. But I am getting this exception all the time,
illegalarguementexception wirelen < buffer len
Any idea how can I resolve this ...
1
vote
1answer
91 views
tcpdump -dd output doesn't match pcap_compile_nopcap
When I create a packet filter (eg for only tcp traffic) with
tcpdump -dd tcp
the packet filter output is
{ 0x28, 0, 0, 0x0000000c },
{ 0x15, 0, 2, 0x000086dd },
{ 0x30, 0, 0, 0x00000014 },
{ 0x15, ...
0
votes
1answer
38 views
How can I obtain the MAC and IP addresses of a machine participating in ARP from the packet header data in C?
Thanks for reading,
I'm in the midst of a homework assignment in which I need to, among other things, determine the MAC and IP addresses of a remote machine based on the captured packets I have. ...
1
vote
1answer
349 views
Scapy PcapReader and packets time
I'm reading a PCAP file using Scapy using a script such as the (semplified) following one:
#! /usr/bin/env python
from scapy.all import *
# ...
myreader = PcapReader(myinputfile)
for p in myreader:
...
2
votes
0answers
110 views
IEEE 1394/Firewire sniffers?
Does anybody know any software (for win7 or winXP) that will allow me to capture or simply see data transferred between Firewire device and Application.
I wish to see data streams between my (ASIO) ...
0
votes
1answer
981 views
How to decode and play back rtp captured packets using wireshark?
I have captured packets of rtp in wireshark.
captured packets are of .mp3, now how should i decode this packets, so that i can play them back again in any player.?
Is there any way to decode this ...
0
votes
0answers
98 views
capturing informations from web radios audio stream
In some web radio players, whenever a new song is put on the air, the player gives us information about the artist, the song and an image of the album. I'm thinking if there is some possibilities to ...
-4
votes
1answer
252 views
wireshark capture the traffic of other devises in LAN [closed]
I am using wireshark on windows to capture my traffic.
Is there a way to capture the traffic of other computers which are connected to the same LAN.
If it is not possible with wireshark, is there ...

