Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Learning Android Forensics
Learning Android Forensics

Learning Android Forensics: A hands-on guide to Android forensics, from setting up the forensic workstation to analyzing key forensic artifacts

eBook
₱579.99 ₱2245.99
Paperback
₱2806.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Learning Android Forensics

Chapter 2. Setting Up an Android Forensic Environment

It is crucial to have an established forensic environment set up before the start of any forensic examination. The forensic analyst needs to be in total control of the workstation at all times. This chapter will take you through everything that is necessary to have an established forensic set up to examine Android devices. In this chapter, we will cover the following topics:

  • Installation of necessary software on the workstation
  • Connecting and accessing an Android device from the workstation
  • Using ADB commands on the device
  • Rooting Android devices

The Android forensic setup

Setting up a sound and well-controlled forensic environment is crucial before the start of any investigation. Start with a fresh and forensically sterile computer. A forensically sterile computer is one that prevents the potential of cross contamination, does not introduce unwanted data, and is free from viruses and other malware. This is to ensure that the software present on the machine does not interfere with the current investigation. Install basic software, such as the following ones; they are necessary to connect to the device and perform analysis:

  • Android SDK
  • Mobile drivers
  • MS Office packages
  • Tools used for analysis

The Android SDK

It is important that we begin the discussion with the Android SDK. The Android Software Development Kit (SDK) helps developers build, test, and debug applications to run on Android. It includes software libraries, APIs, emulator, reference material, and many other tools. These tools not only help create Android applications but also provide documentation and utilities that help significantly in forensic analysis of Android devices. Having sound knowledge of the Android SDK can help you understand the particulars of a device. This, in turn, will help you during an investigation.

During forensic examination, the SDK helps us connect the device and access the data present on the device. The SDK is supported in most of environments, including Windows, Linux, and OS X. It can be downloaded for free from http://developer.android.com/sdk/index.html.

Installing the Android SDK

Google now offers Android Studio and SDK tools only as download options. Android studio contains the Android...

Connecting and accessing an Android device from the workstation

In order to extract information from an Android device, it first needs to be connected to the workstation. As mentioned earlier, care should be taken to make sure that the workstation is forensically sterile and used only for the purpose of investigation. A forensically sterile workstation is one that has a proper build and is free from viruses and other malware. When a device is connected to the computer, changes can be made to the device. Hence, it is crucial that the forensic examiner maintains control over the device at all times. In the world of mobile forensics, using write-protection mechanisms may not be of great help, as they prevent successful acquisition of the device. This is because during acquisition, certain commands need to be pushed to the device to extract the necessary data.

Identifying the device cable

An Android device can be connected to the workstation using the physical USB interface of the device. This...

Android Debug Bridge

In Android forensics, Android Debug Bridge (ADB) plays a very crucial role. It is present at <sdk_path>/platform-tools. In order to work with ADB, the USB-debugging option needs to be enabled. On a Samsung phone, you can access this by going to Settings | Developer options; as shown in the following screenshot:

Android Debug Bridge

The USB debugging option in Android

However, this may not be the case with all the devices, as different devices have different environments and configuration features. Sometimes, the examiner might have to use certain techniques to access the developer options on a few devices. These techniques are device specific and need to be researched and determined by the forensic analyst, based on the device type and model.

Note

On some devices, the Developer options menu is hidden and can be turned on by tapping on the Build Number field (navigate to Settings | About Device) seven times.

Once the USB debugging option is selected, the device will run the adb daemon ...

Rooting Android

"Rooting" is a word that is very often heard with respect to Android devices. As a forensic examiner, it is essential to understand this in detail. This will help you gain the knowledge that is required to understand the internals of the device. It will also help you gain expertise on several issues that are encountered during an investigation. Rooting Android phones has become a common phenomenon and rooted phones are very often encountered during investigations. Also, depending on the situation and data to be extracted, the examiner himself has to root the device in order to extract certain data. The following sections talk about rooting an Android device and other related concepts.

What is rooting?

To understand rooting, it is essential to understand how Unix-like systems work. The original Unix operating system on which Linux and other Unix-like systems are based was designed from the very beginning as a multiuser system. This is primarily because personal computers...

ADB on a rooted device

We have already seen how the ADB tool can be used to interact with the device and execute certain commands on the device. However, on a normal Android phone, certain locations, such as /data/data, cannot be accessed. For example, the following the command-line output appears when you try to access /data/data on a normal device:

C:\Program Files (x86)\Android\android-sdk\platform-tools>adb.exe shell
shell@android:/ $ cd /data/data
cd /data/data
shell@android:/data/data $ ls
ls
opendir failed, Permission denied

This is because the private data of all the applications is stored in this folder. Thus, the security is enforced by Android. Only the root user has access to this location. Hence, on a rooted device, you will be able to see all the data under this location, as shown in the following commands:

C:\Program Files (x86)\Android\android-sdk\platform-tools>adb.exe shell
shell@android:/ # ls /data/data
ls /data/data
android.googleSearch.googleSearchWidget
com.android...

Summary

Setting up a proper forensic environment is crucial prior to conducting investigation on an Android device. The Android SDK installation is necessary to use tools such as ADB that come along with it. Using ADB, an examiner can communicate with the device, view folders on the device, and pull data and copy data to the device. However, not all folders can be accessed on a normal phone in this manner. This is because the device's security enforcements prevent an examiner from viewing the locations that contain private data. Rooting a device solves this issue, as it provides unlimited access to all the data present on the device. Rooting a device with an unlocked boot loader is straightforward, while rooting a device with a locked boot loader involves exploiting some security bug.

With this knowledge about accessing the device, you will now learn how data is organized on an Android device and many other details in Chapter 3, Understanding Data Storage on Android Devices.

Left arrow icon Right arrow icon

Description

If you are a forensic analyst or an information security professional wanting to develop your knowledge of Android forensics, then this is the book for you. Some basic knowledge of the Android mobile platform is expected.

Who is this book for?

If you are a forensic analyst or an information security professional wanting to develop your knowledge of Android forensics, then this is the book for you. Some basic knowledge of the Android mobile platform is expected.

What you will learn

  • Understand the Android system architecture and its significance for Android forensics
  • Build a forensically sound workstation
  • Utilize ADB to acquire data
  • Bypass Android security such as PINs and passwords
  • Perform both logical and full physical extractions to retrieve data
  • Reverseengineer applications
  • Analyze data from many popular applications including Gmail, WhatsApp, and Snapchat
  • Discover free and open source tools to aid in data acquisition and analysis

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Apr 30, 2015
Length: 322 pages
Edition : 1st
Language : English
ISBN-13 : 9781782174448
Vendor :
Google
Category :
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Apr 30, 2015
Length: 322 pages
Edition : 1st
Language : English
ISBN-13 : 9781782174448
Vendor :
Google
Category :
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₱260 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₱260 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 8,471.97
Mastering Python Forensics
₱2296.99
Practical Mobile Forensics
₱3367.99
Learning Android Forensics
₱2806.99
Total 8,471.97 Stars icon
Banner background image

Table of Contents

9 Chapters
1. Introducing Android Forensics Chevron down icon Chevron up icon
2. Setting Up an Android Forensic Environment Chevron down icon Chevron up icon
3. Understanding Data Storage on Android Devices Chevron down icon Chevron up icon
4. Extracting Data Logically from Android Devices Chevron down icon Chevron up icon
5. Extracting Data Physically from Android Devices Chevron down icon Chevron up icon
6. Recovering Deleted Data from an Android Device Chevron down icon Chevron up icon
7. Forensic Analysis of Android Applications Chevron down icon Chevron up icon
8. Android Forensic Tools Overview Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2
(6 Ratings)
5 star 50%
4 star 16.7%
3 star 33.3%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Monisha Jun 24, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Good book for beginners
Amazon Verified review Amazon
DC Dec 18, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book provides a great primer for Android and takes into account that different companies will change it to fit their needs. I like that the author has broken it down to the nuts and bolts for what would be consistent in all Android OS and discusses open source resources to extract, analyze, review, and report (and understands there are commercially available products that do the same). What I appreciate is that it helps me understand what the commercial product is doing at some point in the extraction. Worth the read. I like physical books (I like to mark things).
Amazon Verified review Amazon
Carlos A. Aug 02, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
excellent
Amazon Verified review Amazon
Imcom Jin Jun 14, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
It is a well organised and informative book in general and it is especially friendly for Android beginners. As the nature of Android is also Linux, I would recommend this book to people who also interested in Linux forensics. The book depicts core aspects of digital forensics and provides a clear picture of Android system. It reveals several concrete techniques and methods for doing forensic jobs on Android. In addition, this book also tells readers the relevant tools and other references which readers can go further with. I've also read <<Android Forensics>> when I was in graduate school. <<Android Forensics>> is more technical oriented so readers with less background may find that book hard to follow.
Amazon Verified review Amazon
Adrijan Seferi Nov 06, 2015
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
This is very basic. If you are starting from 0 then this is a good choice.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.