> For the complete documentation index, see [llms.txt](https://sec88.0x88.online/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sec88.0x88.online/android-appsec/genymotion-proxying-android-app-traffic-through-burp-suite.md).

# Genymotion - Proxying Android App Traffic Through Burp Suite

### **General**

List devices:

```
Adb devices -l 
```

Connect to the listed device:

```
Adb connect <ip>:<port>
```

Go to shell on connected device:

```
Adb shell
```

### **Openssl Commands for Converting the Burp Cert**

```
openssl x509 -inform DER -in burp.cer -out burp.pem
```

```
openssl x509 -inform PEM -subject_hash_old -in burp.pem | head -1
```

```
mv burp.pem 9a5ba575.0
```

```
adb root
```

```
adb remount
```

```
adb push 9a5ba575.0 /sdcard/
```

```
adb shell
```

```
mv /sdcard/9a5ba575.0 /system/etc/security/cacerts/
```

```
chmod 644 /system/etc/security/cacerts/9a5ba575.0
```

### **Pointing Genymotion at Burp**

```
adb shell settings put global http_proxy localhost:<some port>
```

```
adb reverse tcp:<some port> tcp:<port burp is listening on>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sec88.0x88.online/android-appsec/genymotion-proxying-android-app-traffic-through-burp-suite.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
