NordCFW
IT Specialist/Security Enthusiast
- Messages
- 109
- Reaction score
- 21
- Points
- 888
Overview:
Android malware analysis engine is not a new story. Every antivirus company has their own secrets to build it. With curiosity, we develop a malware scoring system from the perspective of Taiwan Criminal Law in an easy but solid way. They have an order theory of criminal which explains stages of committing a crime. For example, crime of murder consists of five stages, they are determined, conspiracy, preparation, start and practice. The latter the stage the more we’re sure that the crime is practiced. According to the above principle, we developed our order theory of android malware. We develop five stages to see if the malicious activity is being practiced.
Dalvik bytecode loader consists of functionalities such as :
Detail Report:
This is a how we examine a real android malware (candy corn) with one single rule (crime).
Summary Report:
Examine the rules.
Download:
Android malware analysis engine is not a new story. Every antivirus company has their own secrets to build it. With curiosity, we develop a malware scoring system from the perspective of Taiwan Criminal Law in an easy but solid way. They have an order theory of criminal which explains stages of committing a crime. For example, crime of murder consists of five stages, they are determined, conspiracy, preparation, start and practice. The latter the stage the more we’re sure that the crime is practiced. According to the above principle, we developed our order theory of android malware. We develop five stages to see if the malicious activity is being practiced.
- They are 1. Permission requested.
- 2. Native API call.
- 3. Certain combination of native API.
- 4. Calling sequence of native API.
- 5. APIs that handle the same register.
Dalvik bytecode loader consists of functionalities such as :
- 1. Finding cross reference and calling sequence of the native API.
- 2. Tracing the bytecode register.
Detail Report:
This is a how we examine a real android malware (candy corn) with one single rule (crime).
Code:
$ quark -a sample/14d9f1a92dd984d6040cc41ed06e273e.apk \
-r rules/ \
--detail
Summary Report:
Examine the rules.
Code:
quark -a sample/14d9f1a92dd984d6040cc41ed06e273e.apk \
-r rules/ \
--summary
Download: