Book Image

Learning Android Forensics - Second Edition

By : Oleg Skulkin, Donnie Tindall, Rohit Tamma
Book Image

Learning Android Forensics - Second Edition

By: Oleg Skulkin, Donnie Tindall, Rohit Tamma

Overview of this book

Many forensic examiners rely on commercial, push-button tools to retrieve and analyze data, even though there is no tool that does either of these jobs perfectly. Learning Android Forensics will introduce you to the most up-to-date Android platform and its architecture, and provide a high-level overview of what Android forensics entails. You will understand how data is stored on Android devices and how to set up a digital forensic examination environment. As you make your way through the chapters, you will work through various physical and logical techniques to extract data from devices in order to obtain forensic evidence. You will also learn how to recover deleted data and forensically analyze application data with the help of various open source and commercial tools. In the concluding chapters, you will explore malware analysis so that you’ll be able to investigate cybersecurity incidents involving Android malware. By the end of this book, you will have a complete understanding of the Android forensic process, you will have explored open source and commercial forensic tools, and will have basic skills of Android malware identification and analysis.
Table of Contents (12 chapters)

Extracting data physically with nanddump

In all of the examples that we've covered thus far, the partitions were all MMC blocks, which is typically seen in newer devices. Older devices, however, are far more likely to consist of Memory Technology Device (MTD) blocks. We have seen cases in the past where dd was unable to properly image an MTD block, although more often than not it works fine. If dd fails, there is a widely distributed utility called MTD-Utils that's used to read and write from MTD blocks; nanddump is a part of MTD-Utils, and can be used similarly to dd in order to read from an MTD block. In the cases where dd failed, nanddump was always successful.

Versions of nanddump compiled for Android can be found in many places online; we used the one found here: https://github.com/jakev/android-binaries/blob/master/nanddump.

The process to put nanddump on the...