Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSL Proxy with Genymotion and Charles?

Tags:

I'm trying to get Genymotion (an x86 Android emulator hosted in Virtualbox) working with Charles proxy. I've managed to connect the device to the proxy in the device's wifi proxy settings, using the gateway ip (the vm is configured to use a host-only adapter fwiw) and http traffic is proxied just fine. I've got the charles cert installed on the vm, but all ssl connections still fail with "SSL: Unrecognized SSL message, plaintext connection?" errors. Has anyone been able to configure genymotion to work with Charles as an ssl proxy? Is there a more generic solution I can implement through the virtualbox settings?

Thanks in advance.

like image 571
CtrlF Avatar asked Oct 09 '13 19:10

CtrlF


People also ask

What is Charles Proxy port?

Charles Proxy is a web debugging tool that monitors the network calls and decrypts the web traffic. It helps in understanding the content in your network call. E.g. Requests sent to the server and data fetched from the server etc. This network debugging tool can read the web traffic of Windows, Android and IOS devices.

How do I install Charles certificate on emulator?

Install the Charles SSL Cert To do that, just open up a browser on the emulator, and navigate to http://chls.pro/ssl. The browser may prompt you to allow it to save the cert to disk, and then you can click to install it.


2 Answers

Go to your genymotion emulator

Settings -> Wifi -> Press and hold your active network

Select “Modify Network”

Select “Show Advanced Options”

Select “Proxy Settings -> Manual”

Set your Proxy to: 10.0.3.2 (Genymotion’s special code for the local workstation. the Network mode must be NAT on virtual device configuration)

Set your Port to: 8888

Press Save.

Although after this you will see the network requests logged in charlesproxy . Open the genymotion browser and go the following URL http://charlesproxy.com/getssl to download and install the certificate . you should be good to go . Copied from :http://rexstjohn.com/using-genymotion-charles-proxy/

like image 127
Salil Kaul Avatar answered Sep 28 '22 12:09

Salil Kaul


Updated 21.07.2016 reflecting changes since Charles 3.10

For enabling plain text communication on SSL connections Charles act as a Man in the Middle. After you have managed your device to communicate via Charles http proxy, you need to download and install certificate from your running instance of Charles, its generated and signed by a Charles Root Certificate.

Basically there are two ways possible (I prefer the first one):

Download and install directly on device

Device has to be configured to communicate via Charles!

  1. start browser
  2. open http://charlesproxy.com/getssl
  3. certificate download will be started
  4. confirm insertion dialog

Save the certificate from Charles UI

  1. save the certificate via "Help -> SSL Proxying -> Save Charles Root Certificate.."
  2. put it on a device (via adb push, email ....) and click on the file in order to install it.

Note 1: After install the certificate you will be forced to create a security Pin/Pattern/Password for the device.

Note 2: Since Charles v3.10 single SSL Root Certificates aren't supported anymore.

like image 23
Michal Harakal Avatar answered Sep 28 '22 12:09

Michal Harakal