Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to develop an application capable to detect malicious application for Android platform using Support Vector Machines (SVM). I can get many system information from "logcat" and "strace" tools but I don't now how to manage to detect real malicious applications. Does anyone know how to stablish/record normal behavior use of the device using those tools, I mean, get information from the device and set a behaviour pattern.

Best regards

share|improve this question
So perhaps before deciding to do it in SVM or ANN, ... you better find out what information you can get. :) – Aliostad Jan 13 '11 at 10:07
thank you very much for answering the question Aliostad :) Here is what I can get from those tools: -Logcat : All type of events such as touchscreen-events, user interaction log e.g All the log generated when you open an application or you0re calling o someone. - Strace : I can get the "System Calls" of the system at Kernel Level. I have many information but I don't know how to set a "normal- behavior-pattern" Thanks in advance :) – Martin Solac Jan 13 '11 at 10:17

4 Answers

I wonder, if this is possible ...

How do you want to rate whether a behavior is normal for an application? Do you plan a "learning phase" where everything a certain app does, is recorded (if that's possible without root access in the first place!) and then saved as the "profile" of "normal behavior" of that app?
Say you record whatever behavior an application has, e.g. a tool to organize icons on the homescreen. Now say this application also offers the function to call one of your favorite contacts directly, it will need the permission to access your contacts and to make phonecalls. If this feature is hardly used, you would probably not record it during your "learning" period of this app and rate the app as malicious once it tries to make a phone call.
And what if an app shows malicious behavior during the "learning phase" where you can't detect it because you haven't determined the "normal behavior" yet?

Sounds like the "normal behavior" has to be saved somewhere to rate an app before you install it and it starts acting weird or performs unwanted actions. But then again: what is anwanted for one user may be perfectly normal for another one ...

I'm interested in whatever fancy solutions people come up with, but I guess this will be a hard one ...

share|improve this answer
If a planning report of my Masters' Thesys will help you understanding better this idea of what I'm going to do, I can provide to you, always knowing that no one is going to copy the idea :). – Martin Solac Jan 13 '11 at 10:31
I understand your skepticism. I'm going to use Android Raw data collected from Strace and Logcat (from trustfull app and concrete final version), and try to filter the main features of the program. I'll use this transformed data with a data mining algorithm in order to detect rules or patterns. I was thinking in clustering this information using a clustering algorithm, e.g kmeans. Finally to test the application I'll use the same application but with selft-written malware on it. If everything works fine, the program will be able to detect the anomaly and therefore the malware. – Martin Solac Feb 2 '11 at 14:07
Now the main problem that I have is that there's too many raw data from strace a logcat and I've to decide which ones are important and which not. Any suggestion – Martin Solac Feb 2 '11 at 14:07

what if you use sets of malicious calls in Android first rather than profiling the normal ones.

Also, take note, if you're using unsupervised classification, it does not know what kind of data that it classifies

share|improve this answer
this is a comment really - not an answer – Caribou Nov 13 '12 at 15:43

For Windows API usually people take a look on the sequence to determine their sets of actions. You can find papers/researches done on that too for the Android platform.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.