MLRD is a machine learning based malware analyser written in Python 3 that can be used to detect ransomware.
https://www.surveymonkey.de/r/N289B82
- Analyses and Extracts features from PE file headers to determine if a file is malicious or not.
- Features include: Debug Size, Debug RVA, Major Image Version, Major OS Version, Export Size, IAT RVA, Major Linker Version, Minor Linker Version, Number Of Sections, Size Of Stack Reserve, Dll Characteristics, and Bitcoin Addresses.
- Checks if a file contains a Bitcoin Address using YARA rules.
- Correlate results with Virus Total, Threat Crowd, and Hybrid Analysis.
git clone https://github.com/callumlock/MLRD-Machine-Learning-Ransomware-Detection.git
cd MLRD-Machine-Learning-Ransomware-Detection
sudo pip3 install -r requirements.txt
python3 mlrd_learn.py
python3 mlrd.py 'FILE TO ANALYSE'
python3 mlrd.py 'FILE TO ANALYSE' -v
python3 mlrd.py 'FILE TO ANALYSE ' -t
python3 mlrd.py 'FILE TO ANALYSE' -z
python3 mlrd.py 'FILE TO ANALYSE' -vtz
python3 mlrd.py 'FILE TO ANALYSE' -d
python3 mlrd.py -s
python3 mlrd.py -h
- Malicious and Benign test files for use with the program can be found in the Test Data directory.
- In this directory you will find benign windows PE files and ransomware files within a ZIP file.
- Malicious programs are contained within this directory and thus, should be handled with care.
- The ransomware distributed inside the test virual machine have been gathered for research purposes and are only for use within the scope of this project.
- Using these programs with malicious intent is strictly prohibited.