ELI5, Is there a way someone (me?) can snoop and see data being sent by an API to an app on my phone?

618 views

ELI5, Is there a way someone (me?) can snoop and see data being sent by an API to an app on my phone?

In: Technology

2 Answers

Anonymous 0 Comments

Sure. Install Wireshark on your computer, and use your phone on the same wifi network that your computer is on. That doesn’t necessarily mean you can *understand* the traffic – if either end is encrypting the data then all you’ll see is encrypted junk, for example – but you can *see* the traffic.

Anonymous 0 Comments

Yes, it’s called a MITM (man in the middle).

I wouldn’t use Wireshark, in my experience the majority of apps use HTTPS for this purpose and Wireshark will not be able to decrypt it. Instead, if you use Fiddler and its fake root CA option, you can see the majority of traffic sent by your phone’s apps, mostly in plain text. (some won’t work due to certificate pinning and use of other protocols but these are uncommon)