
Detecção de malware usando aprendizado e recuperação de informações para Android
Detecção de malware usando aprendizado e recuperação de informações para Android
MADLIRA é uma ferramenta para detecção de malware Android. Consiste em dois componentes: componente TFIDF e componente de aprendizado SVM. Em geral, recebe como entrada um conjunto de malwares e benwares e então extrai os comportamentos maliciosos (componente TFIDF) ou calcula o modelo de treinamento (classificador SVM). Em seguida, utiliza esse conhecimento para detectar comportamentos maliciosos em aplicações Android.
Baixe o arquivo MADLIRA.7z e descompacte-o.
Esta ferramenta possui dois componentes principais: componente TFIDF e componente SVM.
Command: java -jar MADLIRA TFIDF
Para este componente, existem duas funções: a função de treinamento (Extração de comportamento malicioso) e a função de teste (Detecção de comportamento malicioso)
MADLIRA TFIDF packAPK -PB benignApkFolder -B benignPack -PM maliciousApkFolder -M maliciousPack
java -jar MADLIRA TFIDF train -B benignPack -M maliciousPack
java -jar MADLIRA TFIDF check -S checkApk
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.
Treinando novos dados:
java -jar MADLIRA TFIDF packAPK -PB BenApkFolder -B BenPack -PM MalApkFolder -M MalPack
java -jar MADLIRA TFIDF clear
java -jar MADLIRA TFIDF train -B BenPack -M MalPack
Verificando novas aplicações:
java -jar MADLIRA TFIDF check -S checkApk
Saída:
Command: java -jar MADLIRA SVM
Para este componente, existem duas funções: a função de treinamento e a função de teste.
java -jar MADLIRA SVM packAPK -PB benignApkFolder -B benignPack -PM maliciousApkFolder -M maliciousPack
java -jar MADLIRA SVM train -B benignPack -M maliciousPack
java -jar MADLIRA SVM check -S checkApk
Command:
java -jar MADLIRA SVM train <Options>
Compute the classifier for given training data.
-T <T>: max length of the common walks (default value = 3).
-l <lambda>: lambda value to control the importance of length of walks (default value = 0.4).
-B <filename>: the archive file contains all graphs of training benwares.
-M <filename>: the archive file contains all graphs of training malwares.
java -jar MADLIRA SVM check <Options>
Check malicious behaviors in the applications in a folder.
-S <foldername>: the folder contains all apk files.
java -jar MADLIRA SVM test <Options>
Test the classifier for given graph data.
-S <foldername>: the folder contains all graphs of test data.
-n <n>: the number of test samples.
java -jar MADLIRA SVM clear
Clean all training data.
Esta ferramenta utiliza os seguintes pacotes: