mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-20 01:55:46 +00:00
60 lines
2.8 KiB
Markdown
60 lines
2.8 KiB
Markdown
# Inspeckage Tutorial
|
|
|
|
**Tutorial copied from** [**https://infosecwriteups.com/genymotion-xposed-inspeckage-89f0c8decba7**](https://infosecwriteups.com/genymotion-xposed-inspeckage-89f0c8decba7)
|
|
|
|
### Install Xposed Framework <a href="#ef45" id="ef45"></a>
|
|
|
|
1. Download Xposed Installer APK from [here](https://forum.xda-developers.com/attachments/xposedinstaller\_3-1-5-apk.4393082/)
|
|
2. Download Xposed Framework zip from [here](https://dl-xda.xposed.info/framework/sdk25/x86/xposed-v89-sdk25-x86.zip)
|
|
3. Download Inspeckage v2.4 APK from the github repo [here](https://github.com/ac-pm/Inspeckage/releases)
|
|
|
|
Start the Virtual Device from the menu
|
|
|
|
![](https://miro.medium.com/max/1000/1\*7fprdQrerabZFKpDJSbHuA.png)
|
|
|
|
Make sure the device is online for adb
|
|
|
|
![](https://miro.medium.com/max/700/1\*Pt3zh1Od9ufQuo66rCge3g.png)
|
|
|
|
Drag and drop the Xposed framework zip file (`xposed-vXX-sdkXX-x86.zip`) to your virtual device display to flash the device.
|
|
|
|
Drag and drop Xposed Installer APK (`XposedInstaller_*.apk`). This should install and launch _Xposed Installer_ application. At this stage, it will display that the Xposed framework is installed but disabled:![](https://miro.medium.com/max/30/0\*0ddJI69QvpxC8rXq.png?q=20)
|
|
|
|
![](https://miro.medium.com/max/700/0\*0ddJI69QvpxC8rXq.png)
|
|
|
|
Reboot the device with `adb reboot` command. **Do not reboot from **_**Xposed Installer**_** as this will freeze the device.**
|
|
|
|
![](https://miro.medium.com/max/657/1\*V\_jl42vdOcJLXvS0riI7Gg.png)
|
|
|
|
Launch _Xposed installer_. It should display “Xposed Framework version XX is active”
|
|
|
|
![](https://miro.medium.com/max/700/0\*QUDB2ryUyIWz3nmZ.png)
|
|
|
|
Drag and drop the Inspeackage APK (app-release.apk) to your virtual device display to install the app.
|
|
|
|
After installing, Go to Xposed Installer → Modules→ Activate the Module → reboot via adb
|
|
|
|
![](https://miro.medium.com/max/623/1\*7sO6IX46hciTBUtWoyLEFQ.png)
|
|
|
|
### Dynamic Analysis with Inspeckage <a href="#7856" id="7856"></a>
|
|
|
|
After, Successful installing of Inspeckage and Xposed Installer. Now we can hook any application with Inspeackage. To do this follow the below steps
|
|
|
|
1. Launch the Inspeckage Application from the application drawer
|
|
2. Click on the “Choose target” text and select the target application
|
|
|
|
![](https://miro.medium.com/max/700/1\*J5J\_rCHOC0ga0YJ5kbwqbQ.png)
|
|
|
|
3\. Then forward VD local-host port to main machine using adb
|
|
|
|
```
|
|
adb forward tcp:8008 tcp:8008
|
|
```
|
|
|
|
![](https://miro.medium.com/max/1000/1\*4lEvYQBILsyr3DqTdiOzig.png)
|
|
|
|
4\. Now click on the “**LAUNCH APP**” Button and then visit [`http://127.0.0.1:8008`](http://127.0.0.1:8008)
|
|
|
|
5\. Now click Turn On the button to Inspect the app. (make sure `App is running:` status should be **True** before you “Turn On”
|
|
|
|
![](https://miro.medium.com/max/1000/1\*jCs1Qo4vlgKyb6yIGvIl4w.png)
|