Sniffing traffic between a Flex app and ColdFusion backend - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:32:07Z http://stackoverflow.com/feeds/question/95442 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend 3 Sniffing traffic between a Flex app and ColdFusion backend Brendan Kidwell 2008-09-18T18:36:52Z 2009-12-04T13:33:12Z <p>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.</p> <p>I'm used to using <a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">Fiddler</a> to sniff transactions between HTTP clients and servers, and it works great as long as you're using plain text or XML HTTP requests and responses (including those over SSL) but it isn't much help for binary protocols like AMF over HTTP.</p> <p>In my case, I <strong>do</strong> have access to the source code for the client and server, but I'm looking for an easy way to passively sniff traffic in any Flex + ColdFusion situation, without having to tweak anything on the server.</p> http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/95477#95477 6 Answer by bmdhacks for Sniffing traffic between a Flex app and ColdFusion backend bmdhacks 2008-09-18T18:39:25Z 2008-09-18T18:39:25Z <p>Wireshark: sniffing the glue that holds the internet together</p> <p><a href="http://www.wireshark.org/" rel="nofollow">http://www.wireshark.org/</a></p> http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/95856#95856 0 Answer by corey goldberg for Sniffing traffic between a Flex app and ColdFusion backend corey goldberg 2008-09-18T19:11:41Z 2008-09-18T19:11:41Z <p>ditto for wireshark (the artist formerly known as Ethereal). you can sniff at every protocol layer, and stitch together traffic streams.</p> http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/95903#95903 2 Answer by Abyss Knight for Sniffing traffic between a Flex app and ColdFusion backend Abyss Knight 2008-09-18T19:16:09Z 2008-09-18T19:16:09Z <p>ServiceCapture is another option. It decodes the binary AMF for you, if I remember correctly.</p> <p><a href="http://kevinlangdon.com/serviceCapture/" rel="nofollow">http://kevinlangdon.com/serviceCapture/</a></p> http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/98104#98104 4 Answer by Cosma Colanicchia for Sniffing traffic between a Flex app and ColdFusion backend Cosma Colanicchia 2008-09-18T23:48:59Z 2008-09-18T23:48:59Z <p><a href="http://www.charlesproxy.com/" rel="nofollow">http://www.charlesproxy.com/</a></p> <p>Although not free, will decode AMF binary data and allows to trace SSL connections too.</p> http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/511920#511920 1 Answer by Jas Panesar for Sniffing traffic between a Flex app and ColdFusion backend Jas Panesar 2009-02-04T15:47:14Z 2009-02-04T15:47:14Z <p>The simple and poor man's trick. Create one cfc to log calls to the different cfc's and pages as you need. Dump it all to a table. Filter and sort at will. I have done this in the past and it has worked great. It's like putting in little fish hooks anywhere you want to know. This would likely give you the most application relevant data. If you need an example let me know.</p> http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/1846968#1846968 0 Answer by ccpizza for Sniffing traffic between a Flex app and ColdFusion backend ccpizza 2009-12-04T13:33:12Z 2009-12-04T13:33:12Z <p>Firebug with the Flashbug plugin will show all decoded AMF messages both to and from a Flash app. Works well over HTTPS too.</p>