Re: [Flashcoders] monitor outgoing http requests

2009-10-11 Thread Peter B
IMHO Wireshark is overkill for simple HTTP sniffing. You can use
Firebug extension for Firefox, and I also like Fiddler2:
http://www.fiddler2.com/fiddler2/

Charles is ace, but not free...
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] monitor outgoing http requests

2009-10-09 Thread Latcho

Charles nice...
If it not crashes and then leaves you with altered (non cleaned up) LAN 
/ IE proxy settings so you can't connect to the net anymore... figure that.


Wireshark all the way. It even decrypts AMF0 data. For the peolple whom 
never use wireshark...

choose an interface from the capture / interface menu and clck start.
When the packets start streaming, do your communication thingie and grap 
one of the packets out of the list.
You can filter a communication line by rightclicking one of the target 
packets and choose "filter TCP stream".
That gives you a log of the whiole communication and at hthe same time 
creates a filter example you can learn from.


Cheers,
Latcho


John McCormack wrote:

I like Charles too.
It's easy to use, it saved me time and it's worth every penny.
John

Chris Foster wrote:

I like using 'Charles' - an HTTP sniffer from http://xk72.com/

C:
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Andrew
Sinning
Sent: Friday, 9 October 2009 8:28 AM
To: Flash Coders
Subject: [Flashcoders] monitor outgoing http requests

I'm trying to track down an issue with a cross-domain policy violation.

Something in one of my movies is making requests to an outside server,
but I can't seem to track it down.  I get a "request for resource at
www.domain.com was denied" message, but I need to figure out what
exactly was being requested so I can track down the origin.

Is there a utility or a FF extension that I can install that will log
all of my outgoing http requests, preferable with a filter?

I searched for port-sniffers, but everything I found was either not-free
or way to complicated to figure out on my limited timeline.

Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
This e-mail, including any attached files, may contain confidential 
and privileged information for the sole use of the intended 
recipient.  Any review, use, distribution, or disclosure by others is 
strictly prohibited.  If you are not the intended recipient (or 
authorized to receive information for the intended recipient), please 
contact the sender by reply e-mail and delete all copies of this 
message.


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


  



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] monitor outgoing http requests

2009-10-09 Thread Alexander Farber
I use WireShark
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] monitor outgoing http requests

2009-10-09 Thread John McCormack

I like Charles too.
It's easy to use, it saved me time and it's worth every penny.
John

Chris Foster wrote:

I like using 'Charles' - an HTTP sniffer from http://xk72.com/

C: 


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Andrew
Sinning
Sent: Friday, 9 October 2009 8:28 AM
To: Flash Coders
Subject: [Flashcoders] monitor outgoing http requests

I'm trying to track down an issue with a cross-domain policy violation.

Something in one of my movies is making requests to an outside server,
but I can't seem to track it down.  I get a "request for resource at
www.domain.com was denied" message, but I need to figure out what
exactly was being requested so I can track down the origin.

Is there a utility or a FF extension that I can install that will log
all of my outgoing http requests, preferable with a filter?

I searched for port-sniffers, but everything I found was either not-free
or way to complicated to figure out on my limited timeline.

Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
This e-mail, including any attached files, may contain confidential and 
privileged information for the sole use of the intended recipient.  Any review, 
use, distribution, or disclosure by others is strictly prohibited.  If you are 
not the intended recipient (or authorized to receive information for the 
intended recipient), please contact the sender by reply e-mail and delete all 
copies of this message.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


  



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] monitor outgoing http requests

2009-10-09 Thread Glen Pike

Hi,

   I have managed to use "Policy File Logging" for flash on Linux - you 
can set up your local "mm.cfg" file to enable this and pipe out stuff to 
a log file - this might help you see what is being requested and denied.


   There are some useful instructions here:

   
http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_05.html#_Using_Logging


   Glen

Andrew Sinning wrote:
I'm trying to track down an issue with a cross-domain policy 
violation.  Something in one of my movies is making requests to an 
outside server, but I can't seem to track it down.  I get a "request 
for resource at www.domain.com was denied" message, but I need to 
figure out what exactly was being requested so I can track down the 
origin.


Is there a utility or a FF extension that I can install that will log 
all of my outgoing http requests, preferable with a filter?


I searched for port-sniffers, but everything I found was either 
not-free or way to complicated to figure out on my limited timeline.


Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] monitor outgoing http requests

2009-10-08 Thread Andrew Sinning
nice tool, but you're right about not seeing the denied request.  thank 
Juan.


Juan Pablo Califano wrote:

Httpfox is not the most powerful tool out ther but will do the job, I think,
and is simple enough.

https://addons.mozilla.org/en-US/firefox/addon/6647

However, I don't think you will see the denied request. The request is sent
by the player only when there are no crossdomain issues.

It might help you to narrow your search, though.


Cheers
Juan Pablo Califano

2009/10/8 Andrew Sinning 

  

I'm trying to track down an issue with a cross-domain policy violation.
 Something in one of my movies is making requests to an outside server, but
I can't seem to track it down.  I get a "request for resource at
www.domain.com was denied" message, but I need to figure out what exactly
was being requested so I can track down the origin.

Is there a utility or a FF extension that I can install that will log all
of my outgoing http requests, preferable with a filter?

I searched for port-sniffers, but everything I found was either not-free or
way to complicated to figure out on my limited timeline.

Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

  


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] monitor outgoing http requests

2009-10-08 Thread Juan Pablo Califano
Httpfox is not the most powerful tool out ther but will do the job, I think,
and is simple enough.

https://addons.mozilla.org/en-US/firefox/addon/6647

However, I don't think you will see the denied request. The request is sent
by the player only when there are no crossdomain issues.

It might help you to narrow your search, though.


Cheers
Juan Pablo Califano

2009/10/8 Andrew Sinning 

> I'm trying to track down an issue with a cross-domain policy violation.
>  Something in one of my movies is making requests to an outside server, but
> I can't seem to track it down.  I get a "request for resource at
> www.domain.com was denied" message, but I need to figure out what exactly
> was being requested so I can track down the origin.
>
> Is there a utility or a FF extension that I can install that will log all
> of my outgoing http requests, preferable with a filter?
>
> I searched for port-sniffers, but everything I found was either not-free or
> way to complicated to figure out on my limited timeline.
>
> Thanks!
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] monitor outgoing http requests

2009-10-08 Thread Chris Foster
I like using 'Charles' - an HTTP sniffer from http://xk72.com/

C: 

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Andrew
Sinning
Sent: Friday, 9 October 2009 8:28 AM
To: Flash Coders
Subject: [Flashcoders] monitor outgoing http requests

I'm trying to track down an issue with a cross-domain policy violation.

Something in one of my movies is making requests to an outside server,
but I can't seem to track it down.  I get a "request for resource at
www.domain.com was denied" message, but I need to figure out what
exactly was being requested so I can track down the origin.

Is there a utility or a FF extension that I can install that will log
all of my outgoing http requests, preferable with a filter?

I searched for port-sniffers, but everything I found was either not-free
or way to complicated to figure out on my limited timeline.

Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
This e-mail, including any attached files, may contain confidential and 
privileged information for the sole use of the intended recipient.  Any review, 
use, distribution, or disclosure by others is strictly prohibited.  If you are 
not the intended recipient (or authorized to receive information for the 
intended recipient), please contact the sender by reply e-mail and delete all 
copies of this message.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] monitor outgoing http requests

2009-10-08 Thread Andrew Sinning
I'm trying to track down an issue with a cross-domain policy violation.  
Something in one of my movies is making requests to an outside server, 
but I can't seem to track it down.  I get a "request for resource at 
www.domain.com was denied" message, but I need to figure out what 
exactly was being requested so I can track down the origin.


Is there a utility or a FF extension that I can install that will log 
all of my outgoing http requests, preferable with a filter?


I searched for port-sniffers, but everything I found was either not-free 
or way to complicated to figure out on my limited timeline.


Thanks!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders