Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Direction on setting up fiddler and Bluestacks

Does anyone know how to set up fiddler to monitor/sniff traffic from bluestacks? I've seen others mentioning that it can be done, but need some direction on configuring fiddler or configuring bluestacks to get it going. Currently fiddler is returning a message, some tunnel to message. Perhaps I would need to configure the port/proxy for bluestacks. If this is the case, does anyone know how this is to be done or can point me in the right direction?

like image 734
user1438488 Avatar asked Mar 31 '13 06:03

user1438488


People also ask

How do I download Fiddler root certificate on my phone?

Install the root certificate of Fiddler Everywhere on the Android device. Open a mobile browser on the Android device and type the http://ipv4.fiddler:8866 echo service address of Fiddler Everywhere. Tap the option to download the certificate.


1 Answers

You can capture Bluestacks traffic using:

  • Wireshark (problem: we can't see https (SSL) traffic)..
  • We can use ProxyCap software and setup all BlueStacks executables to work via our Fiddler local proxy. But we have an issue here - We can't import Fiddler Certificate into BlueStacks (at least I didn't found a way yet)..

one possible solution would be to:

  • KILL BlueStacks processes.
  • Find BlueStacks Root.fs file (in my case it's located here: c:\ProgramData\BlueStacks\Android)
  • edit that file using linux tools (it's an image .. we can do fdisk Root.fs to see partitions.. then mout it with loop rw .. and modify.. but that's need more digging).

one important note: we need to find a way to block BlueStacks autoupdates (and discard our changes in Root.fs)

like image 150
Marcel Tricolici Avatar answered Sep 21 '22 05:09

Marcel Tricolici