in reply to inspect flash traffic in firefox

I recently want to debug gmail sending with attachments. Since gmail now use flash uploader to upload attachments

It sounds like you are tring to mechanize the Gmail web interface. Did you know that you can send attachments thru directly thru GMail with Email::Send::SMTP::Gmail or Net::SMTP::SSL ?


I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

Replies are listed 'Best First'.
Re^2: inspect flash traffic in firefox
by dxxd116 (Beadle) on Nov 10, 2011 at 19:06 UTC
    That is correct. I am trying to mechanize the web interface. Sending through SMTP is an option.

    But I am still curious that whether there is any flash debugger or flash traffic monitor, etc. If there is, then I can debug other websites that embeds flash as well.

        TCPdump, wireshark can capture the raw packet, however, since gmail use TLS in the file uploadoing, wireshark and TCPdump simply can not decrypt the traffic.

        LiveHTTP Headers can not capture traffic generated by flash.

        So, in conclusion, I need a solution that can either decrypt the TLS traffic captured by wireshark or some addon that can capture traffic generated by falsh player embedded in browser(firefox, chrome,IE...).

        Does anyone here have a similar problem before?