├── .gitignore ├── Extras ├── Ahmed Hesham El Sheikh - 1873337.pdf ├── Figure_1 balanced dataset.png ├── Figure_2 balanced dataset.png ├── K BEST classifier features importance output balanced dataset.png ├── K BEST classifier features importance output.bmp ├── Performance metrices of algorithms used to train model balanced data.png ├── Performance metrices of algorithms used to train model.png ├── RFE classifier features importance output balanced dataset.png ├── RFE classifier features importance output.bmp ├── Report.pdf ├── extra trees classifier features importance graph 1.bmp └── random forrest classifier features importance graph 1.bmp ├── README.md ├── docs ├── how_it_works.md └── output.md ├── features_extraction.py ├── features_selection.py ├── malware_analysis.ipynb ├── malware_analysis.py ├── output_balanced dataset.txt ├── output_unbalanced dataset.txt ├── read_dataset.py ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /Extras/Ahmed Hesham El Sheikh - 1873337.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/Ahmed Hesham El Sheikh - 1873337.pdf -------------------------------------------------------------------------------- /Extras/Figure_1 balanced dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/Figure_1 balanced dataset.png -------------------------------------------------------------------------------- /Extras/Figure_2 balanced dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/Figure_2 balanced dataset.png -------------------------------------------------------------------------------- /Extras/K BEST classifier features importance output balanced dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/K BEST classifier features importance output balanced dataset.png -------------------------------------------------------------------------------- /Extras/K BEST classifier features importance output.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/K BEST classifier features importance output.bmp -------------------------------------------------------------------------------- /Extras/Performance metrices of algorithms used to train model balanced data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/Performance metrices of algorithms used to train model balanced data.png -------------------------------------------------------------------------------- /Extras/Performance metrices of algorithms used to train model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/Performance metrices of algorithms used to train model.png -------------------------------------------------------------------------------- /Extras/RFE classifier features importance output balanced dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/RFE classifier features importance output balanced dataset.png -------------------------------------------------------------------------------- /Extras/RFE classifier features importance output.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/RFE classifier features importance output.bmp -------------------------------------------------------------------------------- /Extras/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/Report.pdf -------------------------------------------------------------------------------- /Extras/extra trees classifier features importance graph 1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/extra trees classifier features importance graph 1.bmp -------------------------------------------------------------------------------- /Extras/random forrest classifier features importance graph 1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/Extras/random forrest classifier features importance graph 1.bmp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/README.md -------------------------------------------------------------------------------- /docs/how_it_works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/docs/how_it_works.md -------------------------------------------------------------------------------- /docs/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/docs/output.md -------------------------------------------------------------------------------- /features_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/features_extraction.py -------------------------------------------------------------------------------- /features_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/features_selection.py -------------------------------------------------------------------------------- /malware_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/malware_analysis.ipynb -------------------------------------------------------------------------------- /malware_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/malware_analysis.py -------------------------------------------------------------------------------- /output_balanced dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/output_balanced dataset.txt -------------------------------------------------------------------------------- /output_unbalanced dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/output_unbalanced dataset.txt -------------------------------------------------------------------------------- /read_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/read_dataset.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsheikh21/malware-analysis/HEAD/train.py --------------------------------------------------------------------------------