Post

[THM] Android Analysis

This is a full walkthrough with answers and explanations for the TryHackMe room "Android Analysis".

[THM] Android Analysis

Link to the room: https://tryhackme.com/room/androidanalysis.

[Task 3] Android Architecture - An Overview

Android Architecture

Desktop View

Android Filesystem

img-description

1
ABC123456789

4th line in build.prop file located at system/build.prop


[Task 4] Android - Forensics Artifacts

Examine the artifact containing information about the device’s installed apps. What is the last package installed on this device?

1
com.sneakcam.capture

check the package with firstInstallTime=”1744812000000”


[Task 6] Unboxing the Artifacts

What is the flag hidden inside SMS?

1
FLAG{MSG_HIDDEN_INTENT}

In the call logs, which number has the longest call duration?

1
+14155550011

select * from calls order by duration; in calllog.db

What is the second-to-last suspicious contact name in the list?

1
Encrypted User

Contact nr 22

Most Chrome searches indicate that the user was looking for sites to upload data. What is the last URL found in the list for a similar purpose?

1
https://easyupload.io

Look for title = EasyUpload - Free Hosting

What is the name of the Bluetooth device found in the configuration?

1
Pixel_6_User

C:\Users\Administrator\Desktop\Evidence\suspicious_device\data\misc\bluedroid\bt_config.conf


[Task 7] Triaging with ALEAPP

What is the name of the package found that could be used for the data exfiltration?

1
com.data.exfiltool

ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in a wide variety of files.

One of the MMS message indicates the website used to send the sensitive file? What is the name of that site?

1
MediaFire

“I’ve sent the doc via MediaFire. Delete after review.”

In the contacts, what is the email address associated with the suspicious user named “Encrypted User”?

1
ghost123@tutanota.com

Use the search box to find the “Encrypted User”

A sensitive PDF document was found on the device. Examine the document in the downloads folder. What is the flag hidden inside it?

1
FLAG{INSIDER_ACCESS_42X9}

sdcard/Download

This post is licensed under CC BY 4.0 by the author.