1

there's one app on my phone that i need to know exactly what Uri it uses to connect to it's server. is there a way to find out how?

tl:dr - i'm not trying to hack or damage, and actually the app is developed by the company i started work for, and the guy before me wrote the Uri, but as he removed the source code when he left. Now my boss has only said to me "find it", and now as i'm extremely new to server stuff, i see no other way to recover it other than finding out what uri the app uses.

SIMMORSAL
  • 113
  • 2

2 Answers2

0
  1. look for a software called wireshark
  2. easy way look at your router maybe in the support options to capture the network traffic to the router. On android maybe this app PacketCapture hard way device in your network that can run wireshark with a network card that can run in the promiscuous mode and that can act as gateway for your mobile
  3. open this capure file in wireshark
  4. here you have many options to analyze the net packages i.E. Statistics -> HTTP -> Requests
  5. you could export the result to maybe filter

Wireshark

Promiscuous mode

lemrm
  • 34
  • 4
0

Android app on playstore like "APK EDITER" can do your work. It opens the source code of the app and you can get the URL .

Vikas
  • 1