├── .gitattributes ├── .gitignore ├── README.md ├── TFIDF_3-gram_top50_tpr_fpr.py ├── TFIDF_top50_3gramfeature.csv ├── TFIDF_top50_3gramfeature_test.csv ├── TF_3-gram_top50_tpr_fpr.py ├── TF_top50_3gramfeature.csv ├── TF_top50_3gramfeature_test.csv ├── VirusShare.csv ├── opcode_3-gram_TFIDF_top50.py ├── opcode_3-gram_TFIDF_top50_test.py ├── opcode_3-gram_TF_top50.py ├── opcode_3-gram_TF_top50_test.py ├── out_pridict_x_test_TFIDF_3-gram_top50.txt ├── out_pridict_x_test_TF_3-gram_top50.txt ├── out_x_test_TFIDF_3-gram_top50.txt ├── out_x_test_TF_3-gram_top50.txt ├── plot_roc_gram_TFIDF_top50_3-gram.py ├── plot_roc_gram_TF_top50_3-gram.py ├── smali.py └── yingyongbao.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/README.md -------------------------------------------------------------------------------- /TFIDF_3-gram_top50_tpr_fpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/TFIDF_3-gram_top50_tpr_fpr.py -------------------------------------------------------------------------------- /TFIDF_top50_3gramfeature.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/TFIDF_top50_3gramfeature.csv -------------------------------------------------------------------------------- /TFIDF_top50_3gramfeature_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/TFIDF_top50_3gramfeature_test.csv -------------------------------------------------------------------------------- /TF_3-gram_top50_tpr_fpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/TF_3-gram_top50_tpr_fpr.py -------------------------------------------------------------------------------- /TF_top50_3gramfeature.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/TF_top50_3gramfeature.csv -------------------------------------------------------------------------------- /TF_top50_3gramfeature_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/TF_top50_3gramfeature_test.csv -------------------------------------------------------------------------------- /VirusShare.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/VirusShare.csv -------------------------------------------------------------------------------- /opcode_3-gram_TFIDF_top50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/opcode_3-gram_TFIDF_top50.py -------------------------------------------------------------------------------- /opcode_3-gram_TFIDF_top50_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/opcode_3-gram_TFIDF_top50_test.py -------------------------------------------------------------------------------- /opcode_3-gram_TF_top50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/opcode_3-gram_TF_top50.py -------------------------------------------------------------------------------- /opcode_3-gram_TF_top50_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/opcode_3-gram_TF_top50_test.py -------------------------------------------------------------------------------- /out_pridict_x_test_TFIDF_3-gram_top50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/out_pridict_x_test_TFIDF_3-gram_top50.txt -------------------------------------------------------------------------------- /out_pridict_x_test_TF_3-gram_top50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/out_pridict_x_test_TF_3-gram_top50.txt -------------------------------------------------------------------------------- /out_x_test_TFIDF_3-gram_top50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/out_x_test_TFIDF_3-gram_top50.txt -------------------------------------------------------------------------------- /out_x_test_TF_3-gram_top50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/out_x_test_TF_3-gram_top50.txt -------------------------------------------------------------------------------- /plot_roc_gram_TFIDF_top50_3-gram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/plot_roc_gram_TFIDF_top50_3-gram.py -------------------------------------------------------------------------------- /plot_roc_gram_TF_top50_3-gram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/plot_roc_gram_TF_top50_3-gram.py -------------------------------------------------------------------------------- /smali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/smali.py -------------------------------------------------------------------------------- /yingyongbao.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2015-10-10/MalwareClassification/HEAD/yingyongbao.csv --------------------------------------------------------------------------------