4

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.

DrSAR
  • 2,132

2 Answers2

4

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.

DrSAR
  • 2,132
2

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

sudo apt-get install tcpdump
tcpdump -i $interface
user.dz
  • 49,176
MZR
  • 21