MADLIRA

Malware detection using learning and information retrieval for Android

MADLIRA

Malware detection using learning and information retrieval for Android

Overview

MADLIRA is a tool for Android malware detection. It consists in two components: TFIDF component and SVM learning component. In gerneral, it takes an input a set of malwares and benwares and then extracts the malicious behaviors (TFIDF component) or computes training model (SVM classifier). Then, it uses this knowledge to detect malicious behaviors in the Android application.

Insalling

Download file MADLIRA.7z and decompress it.

Installed Data:

Functionality

This tool have two main components: TFIDF component and SVM component.

TFIDF component

Command: java -jar MADLIRA TFIDF

For this component, there are two functions: the training function (Malicious behavior extraction) and the test function (Malicious behavior detection)

Malicious behavior extraction

Command:

java -jar MADLIRA TFIDF train <Options>
        Compute the malicious specifications for given training data.
                -B <filename>: the archive file contains all graphs of training benwares.
                -M <filename>: the archive file contains all categories of training malwares.

java -jar MADLIRA TFIDF check <Options>
        Check malicious behaviors in the given applications in a folder.
                -S <folder>: the folder contains all applications (apk files).

java -jar MADLIRA TFIDF test <Options>
        Test the classifier for a given test data.
                -S <folder>: the folder contains all graphs for testing.

java -jar MADLIRA TFIDF clear
        Clean all training data.

java -jar MADLIRA TFIDF install
        Clean old training data and install a new data for training.
                -B <filename>: the archive file contains all graphs of training benwares.
                -M <filename>: the archive file contains all categories of training malwares.

Examples:

Training new data:

SVM component

Command: java -jar MADLIRA SVM

For this component, there are two functions: the training function and the test function.

Training phase

java -jar MADLIRA SVM check Check malicious behaviors in the applications in a folder. -S : the folder contains all apk files.

java -jar MADLIRA SVM test Test the classifier for given graph data. -S : the folder contains all graphs of test data. -n : the number of test samples.

java -jar MADLIRA SVM clear Clean all training data. ```

Packages:

This tool uses the following packages:

References