Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
8k views

Sniffer for localhost (Windows OS)

I am looking for a sniffer that can work with the loopback address in Windows. So far, I found Microsoft Network Monitor which is a nice tool, but for localhost it's useless because on Windows, ...
14
votes
5answers
21k views

iPhone and WireShark

How can I sniff packets from my iPhone on my network? can someone give me some instructions? I tried Googling, but nothing teaches how to sniff iPhone packets、 I am on windows.
8
votes
7answers
2k views

Is there an API for Wireshark, to develop programs/plugins that interact with it/enhance it?

Googling didn't give me great results. Is there any sort of API for Wireshark that abstracts away from the main source code so we can develop programs that interact with it and deal with the data it ...
5
votes
5answers
143 views

Stealing my POST data

Okay, this is probably quite basic, but the implications are important to me in this phase of development. I am thankful for any input and discussion. The data in this example are not protected using ...
4
votes
2answers
242 views

C# Listens to HTTP Requests without using WinPcap?

Can i listen to outgoing HTTP Requests with my application without using WinPCap?
4
votes
1answer
2k views

How to sniff iphone network data

I have recently been having problems with my app and I need to view the data being sent to and from my iPhone. I have read about Paros and downloaded it, but I don't know what information I need to ...
3
votes
2answers
123 views

Packet Level networking in Android

I know how to develop in Android and use the Apache HTTP lib, but I want to go lower, get hold of the wireless interface adapter and be able to send & receive packets wirelessly. I know its ...
3
votes
2answers
179 views

How to get data from TCPPacket using SharpPcap?

I need small sniffer for my report so I went with C# and SharpPcap. packet = Packet.ParsePacket(rawCapture.LinkLayerType, rawCapture.Data); tcpPacket = TcpPacket.GetEncapsulated(packet); I have raw ...
3
votes
0answers
81 views

Detecting movement using phones [closed]

I'd like to uniquely identify all wireless devices (phones, tablets, etc) within range. I don't care how far the devices are nor do I need to send them anything. I just want to be able to say: phone ...
3
votes
2answers
94 views

library to capture particular protocol(s)?

I need to capture packets of particular protocol(s) as I do by WireShark(tshark) using display filter, but programmatically since I need to process them. does wireshark have API/library interface? ...
3
votes
5answers
335 views

Localhost packet analyzer for Mac

Packet sniffers generally do not capture localhost traffic. I need to inspect some post data in a localhost environment (being generated from a Ruby on Rails development). Do you know of any ...
2
votes
1answer
32 views

acting like a switch between two sockets with python

am very new to this community 192.168.10.159:35621 communicates with 192.168.10.40:9000 where i have act like a switch between two ports validate the inbound and outbound data and send on successful ...
2
votes
1answer
168 views

tcpdump vs tcpflow (or “why isn't tcpdump ASCII packet data human readable?”)

I have used both, and I conclude that I can read html data from webpages with tcpflow but cannot do so with tcpdump. The best I get is some ugly ASCII text with lots of period symbols. My ...
2
votes
1answer
148 views

Examining TCP traffic from an iOS device

Is there an app or clever way to check TCP:IPv4 traffic for a host:port on iOS devices? Users will be connecting to a device with an iOS app, and if there is an existing way to sniff or otherwise log ...
2
votes
2answers
331 views

Strange RAW Socket on Mac OS X

When i run a simple packet sniffer coded in C on my Mac OS X, i got no output at all, this is a strange thing! can someone help me to understand what going on. #include <stdio.h> #include ...
2
votes
2answers
794 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
4answers
349 views

Identify a non-computer network device?

I'm current working on a program that scans my network and discoveres computers and devices on the network. I use various operations to find data on the devices I discover, but want to distinguish the ...
2
votes
1answer
100 views

Is there a function in Wireshark which I can use to decode packets in a memory buffer rather than a capture file?

I have been reading the docs that come with Wireshark along with analyzing the source to figure out if there is a function or collection of functions in Wireshark which would allow me to pass a buffer ...
2
votes
2answers
648 views

Bluetooth sniffer - preferably mac osx

I am trying to find a bluetooth packet sniffer to capture bluetooth signals from close by devices. I would like for this application to work on mac osx. I have had difficulty finding anything at all ...
2
votes
2answers
682 views

Packet capture tools for Nokia N8 (symbian ^3) Phones

Are there any packet capture tools (like tcpdump and wireshark) for Nokia N8/ symbian ^3 phones! I am currently working on my thesis and have almost done with the application layer behavior using ...
2
votes
1answer
541 views

pcap_loop and pcap_dispatch Difference

What exactly is the difference between pcap_loop and pcap_dispatch?
2
votes
4answers
1k views

libpcap: how to get active network interface (Mac OSX)

I am using libpcap to sniff traffic. I would like to do it on the currently active network device (e.g. one that has an assigned IP address, etc). What's the best way to do this? I'm assuming I would ...
2
votes
3answers
1k views

How to parse TCP packet payload

I'm using pcap to capture TCP packets for which I would like to parse the payload. My strategy is as follows: Get the ethernet header and check if it has type ETHERTYPE_IP (IP packet) Check if the ...
2
votes
1answer
108 views

How to see what data a windows application send through my network?

I want to see what a application send to network and if is possible to edit or stop them. thanks ;)
2
votes
3answers
199 views

How do I programatically collect packets from passively sniffing?

I want to test the vulnerability of the server I just wrote against man in the middle attacks. How (on Mac OS X) do I analyze packets. (I'll be checking where they are going, pulling information ...
2
votes
4answers
241 views

Debug .NET HttpWebRequest

Visual Studio 2010 .NET 3.5 Is there any tool that can trace the http request/response that send between my web application to the remote server? I use Wireshark or Fiddler, but both seem not so fit. ...
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
824 views

How can you access the packet information in a JpCap Packet

How can I pull relevant packet information from a JpCap packet? I am trying to find the source/destination ip and port. So far I have tried string parsing the Packet's toString() method, but that ...
2
votes
6answers
1k views

How to sniff http requests

I want to sniff a local HTTP request to an ASP.NET web application. Is telnet an option? How do you capture packets to a web application?
2
votes
3answers
123 views

http sniffer not working in a LAN setting

I wrote a http sniffer program , first ran it in my standalone pc < fedora OS >, and it worked well. And when i tried this in a LAN setting < bus-LAN , fedora OS again > , and set the eth0 to ...
2
votes
2answers
2k views

when is the push flag set in tcp segment

i asked this previous question here: http://stackoverflow.com/questions/2231283/tcp-two-sides-trying-to-connect-simultaneously i tried the method given in the solution and while sending while using ...
2
votes
2answers
1k views

Any good .net packet sniffers around?

I am looking for one to use from my c# application. Anyone knows a free one?
2
votes
1answer
917 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
6answers
773 views

Deciphering Encoding: Packet Analyzation Tools

I am looking for better tools than wireshark for this. The problem with wireshark is that it does not format the data layer (which is the only part I am looking at) cleanly for me to compare the ...
1
vote
1answer
41 views

How to fork SNMP trap packets using Perl?

I have a need to receive SNMP traps and forward them to four different trap collection servers. SNMP traps are stateless UDP so I'm thinking it should be fairly easy to do... I'm thinking perl is the ...
1
vote
1answer
48 views

Differentiate between TCP Connections using Seq No , Ack No and/or Datasize

I am aggregating connections by going through collected packet dump,collected using TCPDUMP. My code is in Ruby. The code will differentiate between connections using the 4-tuple ( ...
1
vote
6answers
390 views

How to sniff communication between SSL protected Metro web service and WCF client?

Environment: NetBeans 7.0.1, GlassFish 3.1 I want to sniff the communication between a WCF (.NET Framework 4) client and a Metro (2.1.1) web service, and then check the messages to be sure everything ...
1
vote
1answer
130 views

Simple HTTP Proxy [closed]

Does anyone have any source code/tutorials of a way I can make a simple console application for Windows using Visual C++ 2010 that can act as middleware, also called a packet sniffer, between a ...
1
vote
1answer
217 views

c# control of ip webcam

I recently purchased a cheap pan/tilt webcam, the camera is pretty cool but the interface leaves alot to be desired. Its all web based but I was hoping to make a winform application so I can fit it a ...
1
vote
1answer
307 views

How to capture only incoming TCP streams in WireShark?

How to capture only incoming TCP streams in WireShark? (I would like to capture only HTTP connections to my web server, not any outgoing HTTP connections from applications.)
1
vote
1answer
460 views

Using wireshark on the pc to monitor traffic on the Android phone

In order to learn how other applications connect to internet services I would like to monitor the traffic via Wireshark on my Linux PC. I know there are Wireshark tools for Android, but these require ...
1
vote
1answer
126 views

how to make program in c#.net and use winpcap library in it?

I want to make project using winpcap library in c# .net. There is one library file in java named jpcap.jar. Which are the requirements to to make this project?
1
vote
1answer
46 views

Tracking connections and packets of a program

I hope this is quite a simple question.. I've got a compiled .exe program on windows, and I know that it connects to some php resource on some web server and fetch some data. They are just one or two ...
1
vote
1answer
102 views

How to know which network path my program is using?

How to know which network path my program is using ? I have a program running on solaris, this machine has multiple network interfaces few connected to 1Gig and few 10 gig. Suppose my application ...
1
vote
1answer
292 views

LocalConnection between swf sending delay & LocalConnection sniffer tool

I experience a weird issue on a LocalConnections communication between 2 swf. The first one (FLEX application) sends a message on a dedicated LocalConnection to a second one (Flash application). The ...
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
2answers
2k views

Firefox's geo.wifi.url's https://www.google.com/loc/json not used?

I used a network sniffer and examined all the requests going out from Firefox when going to http://html5demos.com/geo. According to my Firefox, the geolocation service according to geo.wifi.uri entry ...
1
vote
3answers
462 views

Packet filtering in Windows (XP, 7 etc)

How can i filter (allow, deny etc) outgoing packets in Windows? I want to search in TCP or UDP packet types to find in the data segment for example this ...
1
vote
1answer
244 views

How do I get a list of 802.11 access points and their MAC addresses that's shown in the pull-down?

My Mac says that there are 10 access points nearby. How do I read that list of access points programmatically, getting both the signal strength and the MAC address of the APs?
1
vote
1answer
346 views

pcap function: pcap_open() question

When I successfully find a device on my computer, and make the call to pcap_open(...) Is this giving me packets only going to and from my computer? What about other computes on the network? Does it ...

1 2 3