android - How to extract just the list of hosts a device is connecting to with tcpdump -


does know how might go filtering tcpdump, can list of hosts (not ip's) time stamps?

i need try identify websites our test devices going , @ time. exact url not required, domain.

the goal able create arraylist or similar:

string domain = "www.google.com"; string timestamp = "<some time , date>"; arraylist<string, string> sites = new arraylist<>(); sites.put(domain, timestamp); 

so huge array 2 pieces of information care about. how can filter tcpdump ignore else? want know requests going out, not replies.

alternatively if there tool can fine too. target platform android. devices rooted. if knows way without rooting better far can tell not possible.

thanks.


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -