Questions tagged [packet-capture]

is for questions about capturing packets of various protocols that are transmitted over a network.

A lot of computer network protocols transmit their contents in packets. Packet capture is the interception of these packets as they are moved over a network of some type.

A packet sniffer captures raw data traveling over a network segment and saves it to a file for analysis.

Software

A software sniffer can generally only capture network data either originating from or going to the computer running it, plus any "broadcast" messages, if the computer is connected to the network via a switch. If the computer is connected to the network via a router, it may be able to capture network data for any device on connected to the same router.

Hardware

A hardware packet sniffer is physically connected to the network by connecting it to a router or switch. Sometimes the router or switch has to be configured to allow the sniffer to capture traffic being routed through it; this is called port mirroring.

Analysis

The captured data can be analyzed by the software that captured it, or by a program specifically designed to analyze the network data.

See Also

  • Wikipedia Article on Packet Analyzers
  • The term packet sniffer is also common and can be considered a synonym.
659 questions
-1
votes
1 answer

Reading the packet information (based on the picture)

Here is an image of a packet captured (I do not have full image, only this snippet). From it, I know that 0x4500 means it indicated the IP version is IPv4. But how do i indicate what is the source and destination address? Is there an easy way to see…
Skyb
  • 11
  • 5
-1
votes
1 answer

Capturing inter-service communication in microservices

Does anybody have experience with capturing inter-service http communication packets in a microservices setup? I'm just exploring options and would be interested in any approach.
-1
votes
1 answer

How to enable IP forwarding and port redirection in Windows 10?

I am trying to set up mitmproxy on my Windows 10 to capture traffic from my Android phone. I am following this tutorial, but I am having trouble finding the corresponding commands in Windows for these Linux commands sysctl -w…
-1
votes
2 answers

http header capture for mobile device to debug

My website is asking for authentication on iPhone but not on android. We have SAML enable at Apache leavel. To debug I need to capture http header for mobile request and want to compare the headers b/w i-phone & Androd. On desktop all works fine.…
rgh
  • 40
  • 2
  • 11
-1
votes
1 answer

Wireshark packet capture

If I use my phone's​ USB tethering feature to use internet on my PC, and play an Online Game on my phone, is there any way to capture those packets by Wireshark (or any other software you wanna suggest) ?? Thanks in advance ;-)
-1
votes
1 answer

Sniffing internal activity - IPC or shared memory?

I have a Progress OpenEdge server, and I want to use a packet-analyzing tool we have to follow what users on the server are doing inside the database. I can see the HTTP traffic from the web management tool, I can see TCP traffic I run remotely, but…
Lotusmeristem
  • 53
  • 3
  • 13
-1
votes
1 answer

Libpcap ARP packet struct not mapping correctly

This code is run every time a packet is detected, but the ARP IP addresses are not matching up to what they should be, the source IP address is not even local. I've added a test printout to try find the problem and I'm getting output like this when…
Crizly
  • 971
  • 1
  • 12
  • 33
-1
votes
2 answers

Wireshark not showing all traffic

I'm using wireshark in Kali v2017.1 for educational purposes on "device 2". When scanning, it does not show all the traffic. Device 1 + 2 are using the same lan and the same switch ip (IP device 1: 192.168.62.65 , IP device 2:…
Raghav
  • 97
  • 1
  • 3
  • 11
-1
votes
1 answer

What are different between these?(TCP packet)

enter image description here These have a two different. if you need more information Plz leave an answer. Thanks.
Yj J
  • 18
  • 2
-1
votes
1 answer

Windows 7 NDIS packet capture

I really want to capture the packet on Windows 7 but i'm beginner of windows programming so I have no idea, how can I solve the problem. I know I can capture the packet by using DNIS but my computer is windows7 but on the webpage there are only…
Leo.L
  • 1
-1
votes
1 answer

Need an option to Wireshark Statistics

I need to obtain statistics about the network traffic of an mpls link between two sites. The main purpose of this is detect the 'top flooders' at the end of the day and at precise moments when the network is 'overloaded'. At this time i have a…
-1
votes
1 answer

How to show and block incoming UDP packets

How to show and block ip UDP incoming in c# WinForms. Show ip and incoming packet in label like Anti DDOS Guardian
-1
votes
1 answer

How to get tcpdump to include layer 3 and 4 for packet size?

I use the command below to get inter arrival time of packets and length of packets: tcpdump -r example.pcap -n -ttt > result.txt The result is something like this: 00:00:00.000545 IP src-ip.52871 > dst-ip.39461: Flags [P.], seq 1:69, ack 1, win…
amin.2014
  • 11
  • 2
  • 6
-1
votes
1 answer

Libpcap radio tap packets

I'm trying to capture and process 802.11 traffic in monitor mode. I'm able to catch it with tcpdump but I'm not able to process it with libpcap. I would need to pass then all packets to deep packet inspection method which is working great with…
Maciej Bielski
  • 129
  • 1
  • 4
-1
votes
1 answer

Why I'm not seeing wireless data requests

I'm new to Scapy, but pretty excited to be playing around with it. I see some cool potential applications for it. Currently I'm just working on getting some basic functionality and with that, I'm trying to pull in Wireless Probe Requests. The…
John Sly
  • 763
  • 1
  • 10
  • 31
1 2 3
43
44