Advertisement
grousso

Spy Android App Fiddler

Nov 10th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. 1) GET APK
  2. 2) decompile with APKTOOL
  3. 3) Create /res/xml/network_security_config.xml
  4.  
  5. <network-security-config>
  6. <base-config>
  7. <trust-anchors>
  8. <certificates src="system"/>
  9. <certificates src="user"/>
  10. </trust-anchors>
  11. </base-config>
  12. </network-security-config>
  13.  
  14. 4) Declare network_security_config.xml to AndroidManifest.xml
  15. <application android:networkSecurityConfig="@xml/network_security_config">
  16.  
  17. 5) Compile with APKTOOl
  18. 6) Sign with uber-apk-signer-1.0.0.jar
  19. 7) Install APK to mobile
  20. 8) Install DRONY and
  21.  
  22. On your android device, go to Settings -> Wi-Fi -> Long press the wifi ssid (in my case myHotspot) -> In the popup, press Modify Network Config -> Check Show advanced options -> Scroll down and set Proxy settings to Manual -> Set Proxy hostname to localhost -> Set Proxy port to 8020 -> And click Save.
  23. Go to Drony app on your device -> Settings tab -> Uncheck Proxy is visible from outside -> Proxy port 8020 -> Scroll down and in the Networks section, Press Wi-fi -> In the Network list, scroll down and select your wifi hotspot that's running (you should see localhost:8020 below it's ssid) -> Set Proxy type to Manual -> Set Hostname to the IP address or domain name of your Fiddler -> Port 8888 -> Set Domain or Realm to home -> Go to the Home tab in Drony and Press ON at the bottom. That's it.
  24.  
  25. 9) Enjoy Fiddler and android together
  26. https://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/ConfigureForAndroid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement