Intent

The Intent object contains data about an intent. The object is used only in results of Android app analysis.

Structure

Key

Type

Description

cn

string

Component that receives the intent.

action

string

Name of action to perform.

data

string

Data to perform the action upon.

transaction

string

Transaction defining a type of component to start:

START_ACTIVITY—starting an activity.

START_SERVICE—starting a service.

BROADCAST_INTENT—delivering a broadcast.

maliciousness

number

Maliciousness, from 0 to 100.

rules

object

List of triggered rules

timestamp

number

Timestamp. It is calculated from the analysis start.

Example

{

 "cn": null,

 "action": "android.app.action.ADD_DEVICE_ADMIN",

 "data": null,

 "transaction": "START_ACTIVITY",

 "maliciousness": 69,

 "rules": {

   "suspicious": [

     "Using device administration features"

   ]

 },

 "timestamp": 0

}