user1500341
user1500341

Reputation:

How can we find the urls where an android apk sends request?

I want to check whether an app is a spam app or not. For that I need to find out the urls it is sending requests to. How can I find out?

I had decompiled the app using apktool.

Upvotes: 1

Views: 2740

Answers (1)

TJ Thind
TJ Thind

Reputation: 784

My suggestion would be to sniff traffic, it's easier and faster. Load the apk on to an emulator instead of a device, then fire up a copy of Wireshark or tcpdump and watch the packets going out from the emulator. Depending on your configuration you can apply filters to narrow down the packets you're capturing.

Upvotes: 2

Related Questions