Add Quark malware analysis report for Dendroid - #973
Merged
Merged
Conversation
Dendroid is a commercial Android RAT tracked by MITRE as S0301. Quark's rule classification flagged both samples as high-risk and confirmed three of the eight techniques MITRE documents for the family. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
haeter525
approved these changes
Sep 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Dendroid Malware Family Analysis Report
This report analyses the Dendroid malware family using Quark's rule classification. Dendroid is a commercial Android RAT sold on underground forums from 2014, whose source code later leaked and seeded a number of derivatives. It is operated through a web panel and disguises itself as a parental-control application. This run did not add a new rule for Dendroid. Check here for the rule set details.
Quark's rule classification flagged 2 of 2 Dendroid samples as high-risk in this experiment (detection rate 100%). Benign-cohort false-positive rate was not measured here. See tested APKs below.
Identified Well-Known Threats
This section uses MITRE ATT&CK Mobile as its reference taxonomy, anchored to the S0301 Dendroid software entry. Of the 8 techniques documented for the family, Quark's static bytecode analysis confirms the 3 listed below; see the coverage-gap notes at the end of this section for the other 5.
All behavior maps below were rendered from sample
099a57328de9335c524f44514e225d50731c808145221affdd684d8b4dad5a1d.apk(packagecom.parental.control.v4) — chosen as the representative sample whose detected behaviors most fully cover the documented profile of Dendroid. The other family sample was used to compute the detection-rate figure above.Each section below corresponds to one technique from the table above. Within each section we first quote the MITRE definition, then show the Quark behavior map extracted from the representative sample's bytecode, then walk through the call sequence and list the underlying rules.
1. T1429 Audio Capture
T1429 Audio Capture — attack.mitre.org
RecordService;onStartdirectly invokes the MediaRecorder API to initialize the recorder and begin capturing audio. This call enables the service to record ambient sound without user interaction.Behaviors detected by Quark:
2. T1533 Data From Local System
T1533 Data from Local System — attack.mitre.org
MyService$getSentSms;doInBackgroundqueries content providers through ContentResolver, including the SMS and call-log URIs, and pulls out message bodies and addresses. This task reads the messages the device has sent; the inbox side is covered separately under T1636.004 below.Behaviors detected by Quark:
3. T1636.004 SMS Messages
T1636.004 SMS Messages — attack.mitre.org
MyService$getInboxSms;doInBackgroundqueries the SMS inbox provider and extracts the body and sender address of each stored message. Where the task above reads sent messages, this one harvests everything the device has received.Behaviors detected by Quark:
Coverage-gap notes
The 5 MITRE techniques documented for Dendroid that this report does NOT demonstrate, grouped by the reason Quark could not confirm them:
Present in the samples but not shown as a section above (2) — T1512 Video Capture and T1582 SMS Control. Quark confirms both at full data-flow depth inside Dendroid's own classes:
Lcom/connect/CameraViewreads and changes camera parameters whileLcom/connect/VideoViewandMyService$recordAudiowrite recorded media to disk;MyService$deleteSmsremoves messages through the SMS content URI andMyService$sendTextsends them. Both behaviours are real and attributable to the family — they are recorded here for completeness.The samples do not exhibit the behaviour (1) — T1655.001 Match Legitimate Name or Location. The matching rules do fire, but only inside bundled library code, so nothing here can be credited to Dendroid.
One of each rule's two APIs is absent (2) — T1417.002 GUI Input Capture and T1633.001 System Checks. Quark confirms a rule only when both of its APIs appear in the APK, and for these two that never happens: the accessibility APIs the keylogging rules pair against are not called anywhere in the samples, and neither are the second halves of the device-check rules.
List of Tested APKs
The table below lists the APKs we tested.
🤖 Generated with Claude Code