How to capture https traffic

I am trying to capture the requests of my android emulator. I want to know the data used by my android app. I tried various ways which didn't work. I am trying to do that using the emulator now. I have emulated my android device in ubuntu and I want to capture all traffic of my android emulator(http and https) using a tool.

We have fiddler in windows but this emulator stuff did not work there.

2 Answers

Consider wireshark

sudo apt-get install wireshark

This should help you sniff out any traffic originating from your android emulator to http https based on a variety of filter criteria.

2

Use wireshark or command line tool tshark. tcpdump is another option.

sudo apt-get install tcpdump
tcpdump -i $interface

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like