Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
10answers
20k views

Are there any HTTP/HTTPS interception tools like Fiddler for mac os X?

I would want to ask you if you know any application like fiddler but for mac os x , i need to debug some requests from google earth in mac os x. i used to do it with fiddler on windows but now i don't ...
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.
14
votes
3answers
12k views

How to sniff usb port under Windows?

From time to time I need to dump usb traffic under windows, mostly to support hardware under Linux, so my primary goal is to produce dump files for protocol analysis. For USB traffic, it seems that ...
9
votes
5answers
1k views

Why is browser sniffing not a recommended practice?

You hear it all over the place: using javascript to sniff the user agent string to detect browser versions is a Very Bad Thing. The latest version of jQuery has now deprecated its $.browser object in ...
6
votes
1answer
216 views

jQuery.browser is deprecated, but how do you use .support?

On my web page, I have this CSS: tr:hover { background-color: #f0f; } Which works nicely in all browsers except for good ole IE. I know that I can just write some jQuery to add and remove a ...
6
votes
6answers
1k views

Sniffing traffic between a Flex app and ColdFusion backend

What is a good strategy for sniffing/tracing function calls between a Flex application and a ColdFusion-based backend running on ColdFusion server? I understand they use AMF protocol. I'm used to ...
5
votes
1answer
387 views

URL Sniffing in Python

Does anyone know how to write a live data sniffer in Python which extracts the originating IP address and the full URL that was being accessed? I have looked at pulling data from urlsnarf however IPv6 ...
5
votes
8answers
3k views

Sniffing network traffic for signs of viruses/spyware

How can I connect a system to a network and sniff for virus/spyware related traffic? I'd like to plug in a network cable, fire up an appropriate tool sand have it scan the data for any signs of ...
4
votes
1answer
1k views

Serial / Com Port monitor for Windows x64

Can anyone recommend any good Com port monitor tools, like Portmon, which also work on Windows x64? Ideally something open source / freeware would be good.
4
votes
5answers
766 views

Free tools for local HTTP packet sniffing/intercepting?

I'm currently using HTTP Analyzer V5 trial version which expires very soon. Are there any [good] free tools for sniffing and inspecting the contents of HTTP packets, in a similar way to the above ...
4
votes
4answers
6k views

Packet sniffing in Python (Windows)

What is the best way to sniff network packets using Python? I've heard from several places that the best module for this is a module called Scapy, unfortunately, it makes python.exe crash on my ...
3
votes
3answers
683 views

How can I connect to a proxy on Android?

I have a Samsung Galaxy S, running on Android 2.2 I want to track all HTTP requests (browser AND apps) with Charles (proxy installed on my computer) Similar to on the iPhone where you go to settings, ...
3
votes
1answer
741 views

how to show iphone apps sniffing HTTP Requests?

i have iphone 3 with OS4 (not jailbreaked) and i want to inspect some apps http request urls , i tried fiddler but its not worked , anyone has idea? is the device must be jail breaked? i got ubuntu / ...
3
votes
3answers
1k views

How to sniff local outgoing network traffic in .NET without using PCap?

I'd like to somehow hook into the local system's network stack to capture outgoing network packets without using Winpcap. Unfortunately it tends to crash my system every now and then. Is there a way ...
3
votes
4answers
967 views

Sniffing/capturing all traffic between Apache and Weblogic on Solaris

We have an application where an embedded device talks to weblogic via Apache. Weblogic and Apache are on the same Solaris server, and we are using the weblogic module for Apache. The communication ...
2
votes
1answer
63 views

Com-Port Packages are cut off. Rather due to Zigbee or Com-Port?

Im developing a c# windows service to do some communication via serial port with a usb-connected zibee-network. Now i know, how long an answering package should be, and sniffing the serial port i ...
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
241 views

how to debug an ssl connection?

I have a client application that connects to a web service over https. I need to "sniff" all the network traffic between web service and my client to check if everything is okay, i.e, i have to debug ...
2
votes
1answer
194 views

Is there a library for parsing/formatting TCP packets or anything that would help doing it?

My application uses tcp to connect to my server and I am packet sniffing it to see how it works using wireshark, the first thing that crossed my mind is the packets that are coming to me in hex so ...
2
votes
2answers
86 views

Windows device driver sniffing / debugging

I've recently bought a laptop with a touch pad that does not completely work under Linux. So I thought I might listen what data is sent to the PS2 controller (IO port 60) under Windows, and update the ...
2
votes
1answer
160 views

How to listen at the network layer?

Programs like AdMuncher seem to intercept packets at the network layer before it ever reaches whatever protocol it is using. I want to do something similar, basically analyze each packet as it comes ...
2
votes
1answer
540 views

pcap_loop and pcap_dispatch Difference

What exactly is the difference between pcap_loop and pcap_dispatch?
2
votes
1answer
158 views

gdb appears to ignore executable capabilities

I am debugging a program that makes use of libnetfilter_queue. The documentation states that a userspace queue-handling application needs the CAP_NET_ADMIN capability to function. I have done this ...
2
votes
4answers
299 views

Decoding sniffed packets

I understand that each packet has some header that seems like a random mix of chars. On the other hand, the content itself can be in pure ascii and therefore it might be human friendly. Some of the ...
2
votes
1answer
222 views

A smart UDP protocol analyzer?

Is there a "smart" UDP protocol analyzer that can help me reverse engineer a message based protocol? I'm using Wireshark to do the sniffing, but if there's a tool that can detect regularities in the ...
2
votes
2answers
784 views

How would I go about writing a Linux TTY sniffer?

For educational purposes (not that anyone should care about the motivations behind such an exercise) I'd like to write a program that can read/write to/from alternate tty/pty's. I've read papers (from ...
2
votes
4answers
2k views

How to capture HTTP packet with SharpPcap

I would like to capture all incoming HTTP packets of my machine. To do that I'm using SharpPcap which is a WinPcap wrapper. SharpPcap works very well but it captures TCP packets and this is too low ...
2
votes
5answers
2k views

How can I inspect form data being Posted?

I am reverse engeneering an app and I need to see what is in the post data without viewing the form source, is a there a decent app/plugin to see what is being posted? Any Browser on Windows I'm ...
2
votes
3answers
5k views

In C# how could I listen to a COM (Serial) Port that is already open?

I am using a program that talks to my COMM port, but I have made another program that I want to "sniff" the comm port messages and perform it's own actions against those messages in addition. Is this ...
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
1answer
82 views

tcpdump to filter ssl packets

I need to filter out all SSL packets using tcpdump. I know that only the first packet can be recognized as being ssl. Is it possible to match against the first packet and then filter out the rest of ...
1
vote
3answers
34 views

How to link directly to an FAQ option expanded

I was wondering if you could give me some ideas on how I can do this. What we are looking to do is link directly to a question in our FAQ page. Currently our FAQ questions are being hidden via jQuery ...
1
vote
1answer
165 views

Android - Problems with tcpdump when in ad-hoc mode

Currently I'm working on a project that demands using Android and tcpdump. A short description of what I do: I want sniff packets using android. I have built an android application which does this ...
1
vote
5answers
224 views

How can I extract data from a Java applet (inside the browser)

Well, well, here we go... We have a java applet running on a regular browser (ff4+ or ie5+). I do NOT have access to the java code / servlet. Nor even to the server. I NEED to send/retrieve data ...
1
vote
1answer
228 views

How can i hide my data from sniffing?

I use this code to connect to fileserve.com using my premium account i want to share my program but they can easly snif username and password using "HTTP Analyzer" is there a way to hide my username ...
1
vote
1answer
575 views

Python Raw Sockets (Windows): Sniffing Ethernet Frames

I have seen several examples of creating sockets to sniffing for IP Packets, for example using: s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_IP) What I am trying to achieve, ...
1
vote
1answer
354 views

Capturing packets on Windows 7

I am trying to capture all of transferred packets on a computer. My code works fine in Windows XP but it only captures outgoing packets on Windows 7 and cannot see incoming packets. Here is a version ...
1
vote
1answer
102 views

android How to sniff extra param value from an intent from a third party app

Logcat prints 05-09 08:26:17.979 I/ActivityManager( 2257): Starting activity: Intent { cmp=com .com.pkg/.classname (has extras) } How to know what are those extra key pair values? The above log comes ...
1
vote
1answer
157 views

Sniff all network interfaces

I've written a program that uses sockets to capture packets on network interfaces. First I gather all IPs of my machine using gethostbyname, then bind a raw socket to each ip with SOCK_RAW, IPPROTO_IP ...
1
vote
1answer
565 views

Can't compile simple program with tcp.h because of error from endianess?

Help me compile this simple C program using tcp.h? Getting "mitmc.c:82: error: struct tcphdr has no member named th_off" because the byte order is not set with "# ifdef __FAVOR_BSD" This is prolly a ...
1
vote
0answers
520 views

Decode HTTP packet content in python as seen in wireshark

Ok, so bascially what I want to do is intercept some packets that I know contains some JSON data. But HTTP packets aren't human-readable, so that's my problem, I need to make the entire packet (not ...
1
vote
1answer
913 views

How to put NIC into promiscuous mode?

Hi I want to put my NIC into promiscuous mode. Why? Because I wrote app which is able potentially to detect sniffing in my local network (send modyfied appropriately ethernet packets). I just want ...
1
vote
0answers
110 views

Sniffing external(Ps3) Usb port?

I was interested in seeing how my PS3 synchronised with its sixaxis controller. Whenever you want to use a new controller on the PS3, you have to pair it with the ps3 via USB. So i thought i'd try ...
1
vote
2answers
262 views

Sniffing and displaying TCP packets in UTF-8

I am trying to use tcpdump to display the content of tcp packets flowing on my network. I have something like: tcpdump -i wlan0 -l -A The -A option displays the content as ASCII text, but my text ...
1
vote
1answer
187 views

How to sniff im comunicaton?

I would like to write communication sniffer for some im, like icq or msn. Can you please help me how to start? its quite hard to find useful info how to do this. How should i start? i know that there ...
1
vote
1answer
195 views

How does HTTP Analyzer work?

Halo, i am interest in methods, which http analyzer uses to capture data. I would like to write program which saves emails sent via web based clients. The problem is https and HTTP Analyzer solves it, ...
1
vote
1answer
191 views

Spy++ like program for viewing control values

I'd like to view and export the values of a combobox. What program can I use to allow me to get the values in a control inside another application?
1
vote
3answers
593 views

is it safe to call “plink.exe” in an application

i want to use "plink.exe -u username -pw securepassword" on my windows visual c++ program. will username and password remain safe while calling this command? I mean can a hacker steal or sniff the ...
1
vote
1answer
511 views

tcpflow for windows

is there a tool like tcpflow for windows? i need to sniff tcp's data only (without the headers) I would prefer to use command line tool ,so i can grep the output for example
1
vote
3answers
2k views

Packet Sniffing using Raw Sockets in Linux in C

I need to write packet sniffer in Linux that detect http packet that send and save the url that request . I see code in security-freak and run related code . This code run and only sniff received ...

1 2