├── .gitignore ├── .gitmodules ├── Features_for_Malware_Detection.pdf ├── LICENSE ├── Prelim_Results_Malware_Detection.pdf ├── README.md ├── combine_features.py ├── config-template.ini ├── extract_apk.sh ├── extract_apks_parallel.sh ├── find_top_features.py ├── get_dates.py ├── get_samples.py ├── match_features.py ├── parse_disassembled.py ├── parse_maline_output.py ├── parse_ssdeep.py ├── parse_xml.py ├── plot_data.py ├── possibly_helpful_papers.txt ├── requirements.txt ├── run_trials.sh ├── sklearn_forest.py ├── sklearn_svm.py ├── sklearn_tree.py ├── sort_malicious.py └── tensorflow_learn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/.gitmodules -------------------------------------------------------------------------------- /Features_for_Malware_Detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/Features_for_Malware_Detection.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /Prelim_Results_Malware_Detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/Prelim_Results_Malware_Detection.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/README.md -------------------------------------------------------------------------------- /combine_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/combine_features.py -------------------------------------------------------------------------------- /config-template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/config-template.ini -------------------------------------------------------------------------------- /extract_apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/extract_apk.sh -------------------------------------------------------------------------------- /extract_apks_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/extract_apks_parallel.sh -------------------------------------------------------------------------------- /find_top_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/find_top_features.py -------------------------------------------------------------------------------- /get_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/get_dates.py -------------------------------------------------------------------------------- /get_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/get_samples.py -------------------------------------------------------------------------------- /match_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/match_features.py -------------------------------------------------------------------------------- /parse_disassembled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/parse_disassembled.py -------------------------------------------------------------------------------- /parse_maline_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/parse_maline_output.py -------------------------------------------------------------------------------- /parse_ssdeep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/parse_ssdeep.py -------------------------------------------------------------------------------- /parse_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/parse_xml.py -------------------------------------------------------------------------------- /plot_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/plot_data.py -------------------------------------------------------------------------------- /possibly_helpful_papers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/possibly_helpful_papers.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | pydotplus 3 | sklearn 4 | numpy 5 | ssdeep 6 | -------------------------------------------------------------------------------- /run_trials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/run_trials.sh -------------------------------------------------------------------------------- /sklearn_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/sklearn_forest.py -------------------------------------------------------------------------------- /sklearn_svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/sklearn_svm.py -------------------------------------------------------------------------------- /sklearn_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/sklearn_tree.py -------------------------------------------------------------------------------- /sort_malicious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/sort_malicious.py -------------------------------------------------------------------------------- /tensorflow_learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwleeds/android-malware-analysis/HEAD/tensorflow_learn.py --------------------------------------------------------------------------------