[android-developers] Re: how to track all http/https requests

2010-04-12 Thread Yahel
Hi Amardeep,

It really depends what you want to do with the data.

If it is only for debug purposes, you can set your connection to use
wifi and then use WireShark on your pc to log the network traffic.

If it is for your app to spy on the phone system wide, I don't know if
it is even possible, but I saw a japanese app a few month ago that
showed graphs of the diffeent network use in real time.
Not sure how it worked or the systems allows such a fine filtering of
network data.

Yahel


On 12 avr, 08:36, Amardeep Jaiman amardeep.jai...@gmail.com wrote:
 Hi,

 How to collect URLs of all http/https requests made by the phone as well as
 well as the return status code and user agent from the headers. This
 information should be coming for all browser requests and other applications
 too.

 Please let me know this information can be retrieved on App level or we have
 to go to system level for this.

 Thanks,
 Amardeep

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: how to track all http/https requests

2010-04-12 Thread Amardeep Jaiman
Can you give me that name of japanese app? actully i want to make a sniffer
background application which tracks all the https/https requests made by
phone's browser and any other app. i think you have got my requirement.

Can anyone else let me know about this ?

Thanks,
Amardeep


On Mon, Apr 12, 2010 at 2:26 PM, Yahel kaye...@gmail.com wrote:

 Hi Amardeep,

 It really depends what you want to do with the data.

 If it is only for debug purposes, you can set your connection to use
 wifi and then use WireShark on your pc to log the network traffic.

 If it is for your app to spy on the phone system wide, I don't know if
 it is even possible, but I saw a japanese app a few month ago that
 showed graphs of the diffeent network use in real time.
 Not sure how it worked or the systems allows such a fine filtering of
 network data.

 Yahel


 On 12 avr, 08:36, Amardeep Jaiman amardeep.jai...@gmail.com wrote:
  Hi,
 
  How to collect URLs of all http/https requests made by the phone as well
 as
  well as the return status code and user agent from the headers. This
  information should be coming for all browser requests and other
 applications
  too.
 
  Please let me know this information can be retrieved on App level or we
 have
  to go to system level for this.
 
  Thanks,
  Amardeep

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using remove me as the subject.


[android-developers] Re: how to track all http/https requests

2010-04-12 Thread Yahel
Name of the app was something like 91nettraffic.

As for a sniffer, i'm not sure the framework gives you access to such
low level function. But if it does, then it will be a great and very
useful app for developpersand spies, and trojan, and...Hmmm well
with great power, comes great responsability :D


Yahel

On 12 avr, 12:13, Amardeep Jaiman amardeep.jai...@gmail.com wrote:
 Can you give me that name of japanese app? actully i want to make a sniffer
 background application which tracks all the https/https requests made by
 phone's browser and any other app. i think you have got my requirement.

 Can anyone else let me know about this ?

 Thanks,
 Amardeep



 On Mon, Apr 12, 2010 at 2:26 PM, Yahel kaye...@gmail.com wrote:
  Hi Amardeep,

  It really depends what you want to do with the data.

  If it is only for debug purposes, you can set your connection to use
  wifi and then use WireShark on your pc to log the network traffic.

  If it is for your app to spy on the phone system wide, I don't know if
  it is even possible, but I saw a japanese app a few month ago that
  showed graphs of the diffeent network use in real time.
  Not sure how it worked or the systems allows such a fine filtering of
  network data.

  Yahel

  On 12 avr, 08:36, Amardeep Jaiman amardeep.jai...@gmail.com wrote:
   Hi,

   How to collect URLs of all http/https requests made by the phone as well
  as
   well as the return status code and user agent from the headers. This
   information should be coming for all browser requests and other
  applications
   too.

   Please let me know this information can be retrieved on App level or we
  have
   to go to system level for this.

   Thanks,
   Amardeep

  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post to this group, send email to android-developers@googlegroups.com
  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using remove me as the subject.


[android-developers] Re: how to track all http/https requests

2010-04-12 Thread Bob Kerns
HTTPS will not, under any circumstance, let you get access to header
or content information from other applications. This would be a
security violation of the highest order! Like steal all your money
security violation. Like steal your identity security violation.

You can use various protocol monitors on your local network, if you
access over WiFi. Even if it's possible to do what you need on the
phone, it's going to be a lot easier this way.

On Apr 11, 11:36 pm, Amardeep Jaiman amardeep.jai...@gmail.com
wrote:
 Hi,

 How to collect URLs of all http/https requests made by the phone as well as
 well as the return status code and user agent from the headers. This
 information should be coming for all browser requests and other applications
 too.

 Please let me know this information can be retrieved on App level or we have
 to go to system level for this.

 Thanks,
 Amardeep

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using remove me as the subject.