andymeneely / attack-surface-metrics

Scripts for collecting metrics of the attack surface
MIT License
14 stars 4 forks source link

Mine Google Play store reviews #37

Closed megakevin closed 9 years ago

megakevin commented 9 years ago

Let's start mining the Google Play store's user comments/reviews/ratings. We can use this to find correlations between the attack surface and certain characteristics that we identify from this data.

Through natural language processing or topic modeling we can determine what the users are talking about in these comments and identify instances that are security or quality related.

Then we can see what the attack surface can tell us about that or what that can tell us about the attack surface. If there is a relationship there.

megakevin commented 9 years ago

Wrote a python script to download the user reviews of a given apk: https://github.com/megakevin/android-attack-surface/blob/master/googleplay-scraper/get_reviews.py

Works well but google doesn't like the automated requests to their servers and thus blocks from time to time.

This script will be called by a main bootstrapper script after the main scraper has put the apks information into the database.

Still need to:

megakevin commented 9 years ago

https://github.com/megakevin/android-attack-surface/blob/master/googleplay-scraper/get_reviews.py

megakevin commented 9 years ago

The code that does this is written. Only need to run it.