c12
c12

Reputation: 9827

Sniffing REST API URLs in Mobile App

I have some HTTPS POST REST API URLs in my mobile app (both Android and iOS) and I was wondering if its possible to sniff those urls?

Upvotes: 2

Views: 2369

Answers (1)

323go
323go

Reputation: 14274

The urls CAN be sniffed with package sniffers, on proxy servers, gateways, etc. However, since you're using SSL (and as long as you don't disabled certificate checks), both your post parameters and the responses will be encrypted.

Upvotes: 3

Related Questions