views:

30

answers:

4

Hello everybody,

I have a flash-based (AC3) application which does some network activity. Is there any way to see what requests it generates? Something like network console.

Sources are not available and there is no way to modify the application.

Im on linux platform (Ubuntu), so dont have any flash developer tools. The only solution that comes to my head is to setup traffic logging on OS level.

Any ideas?

+1  A: 

You should run Wireshark or Snort. By defining filters (in the case of Wireshark) or rules (in the case of Snort), you can whittle it down.

It will also help if you stop other services/daemons/programs using the HTTP protocol.

0x90
Wireshark solved the problem! Thanks.
Dan Sosedoff
+1  A: 

You could run it through a local proxy such as Charles Proxy.

toxaq
+1  A: 

Fiddler is another proxy for windows.

ggonsalv
A: 

You can also use httpWatch which let's you track all requests just like Fiddler. You can find it here and download the free version: http://www.httpwatch.com/?gclid=CMr11s6-qKQCFcHr7QodjXRW5w

Carlos Pinto