Android Forensics. Presented By: Mohamed Khaled. Thanks to: Ibrahim Mosaad Mohamed Shawky

Size: px
Start display at page:

Download "Android Forensics. Presented By: Mohamed Khaled. Thanks to: Ibrahim Mosaad Mohamed Shawky"

Transcription

1 Android Forensics Presented By: Mohamed Khaled Thanks to: Ibrahim Mosaad Mohamed Shawky

2 Agenda Mobile Forensic Process Different Mobile Forensic Scenario Acquisition Guide Challenges of Android Forensics How to Circumvent the Pass Code Types Of Analyses(Logical analysis) Types Of Analyses(Physical analysis) Android Partition Layout Custom Recovery Modifications How Data are Stored In Android Example of Useful Data extracted from Android Image

3 Mobile Forensic Process Receive device as evidence. Receive request for Intake Identify device specifications & capabilities examination Identify Goals of Examination Identification Prepare methods and tools to be used Prepare media and forensic workstation Preparation Protect the evidence Prevent for examination data destruction Prepare toolsremote to most recent version Isolation Isolate from the Cellular Conduct forensic acquisition network, bluetooth, and Wi-Fi Perform forensic analysis Processing Scan for malware Validate your acquisition Validate your forensic Verification findings Keep notes about your findings and process Documenting Draft and finalize your forensic reports Prepare exhibits Present Keep a gold copy of data in ayour Presentation findings safe place Keep data in common formats Archiving for future

4 Data Acquisition Types Manual Logical Physica l

5 scenarios The device might be found to be turned off after seizure. have internal or removable memory Locked /unlocked Have access via USB debug mode or not

6 Acquisition Guide A-(Unlocked) Airplane Mode SIM ID Cloning Isolate Device from the Network Take the necessary steps to ensure physical device access is possible Remove passcode Enable USB debugging Enable Stay Awake Disable timed screen lock features Acquire supporting media SIM card(s) Media cards Check associated media for device backups Physical Acquisitions

7 A1 - Isolate Device from the Network Airplane Mode Remove the SIM card. Place device in a shielded bag, box, tent, or room.

8 A 2-Ensure physical device access is possible Enable USB debugging Enable Stay Awake option Disable timed screen lock features

9 A3 - Physical Acquisitions Acquire supporting media SIM card(s) Media cards Check associated media for device backups(connected PC or Network)

10 Acquisition Guide B-(Locked) 1 Physical access requires that USB debugging mode is enabled. Forensic tools will use custom bootloaders to bypass the passcode if applicable. 2 Acquire supporting media SIM cards Media card(s) 3 Check associated computers and media for device backups Computers and media cards

11 Challenges of Android Forensics Access to system partitions is Restricted to The Android OS. Techniques for obtaining root privilege differ depending on Android version, device manufacturer and model. The OS has Authentication mechanisms that uses passwords, tactile patterns or biometric information

12 How to Circumvent the Pass Code The smudge attack Flash a New Recovery Partition (Our Solution) Know Gmail user name and password for the device JTAG and Chip-off

13 Types Of Analyses(Logical analysis) It is possible to backup all the present data in a cell phone without rooting Using Android Debug Bridge (adb backup command). $ adb backup -apk -shared -system -all -f %1.backup created a backup file which was later converted to.tar archive $ java -jar abe.jar unpack %1.backup %1.tar

14

15

16

17 Physical Analysis (Low level analysis ) Low level analysis is based on exact, bit to bit, copy of userdata partition. After the copy, this partition is stored as a single file. which is later used as input for other analysis tools. Only a root user can make such a copy, so the phone must have been rooted at first.

18 What is rooting? Process of overcoming limitations imposed by manufacturers on smartphone or tablet owners. Gives an owner the ability to replace and/or alter system applications and settings Run applications requiring administrator-level privileges This includes listing active mounted partitions and cloning them

19 Physical analysis(recovery Mode) Another Way to Do Physical Analysis is by using Recovery Rom But first We Are Going to Talk About the Android Partition Layout

20 Android Partition Layout boot loader Splash Boot Recovery System Userdata or Data Cache Radio

21 Android Partition Layout (Cont.) boot loader: Stores the phone s boot loader program, which takes care of : Initializing the hardware when the phone boots Booting the Android kernel Implementing alternative boot modes such as download mode. boot: Stores the Android boot image, which consists of : Linux kernel(zimage) and the root file system ram disk (initrd). splash: Stores the first splash screen image seen right after powering on the device.

22 Android Partition Layout (Cont.) userdata (data): this is the device s internal storage for Application data User files such as: pictures, videos, audio, downloads. This is mounted as /data on a booted system. system: Stores the Android system image that is mounted as /system on a device. Contains the Android framework. Libraries. system binaries. pre-installed applications.

23 Android Partition Layout (Cont.) cache: Used to store various utility files such as : recovery logs and update packages downloaded over-the- air. On devices with applications installed on an SD card it may also contain the dalvik-cache folder, which stores the Dalvik Virtual Machine (VM) cache.

24 Physical analysis(recovery Mode) It is an operating designed to apply updates format the device perform other maintenance on the devices. The stock recovery mode on most devices is very basic Only provides a number of limited functions Does not provide root privileges in a shell.

25 Physical analysis(recovery Mode) Should use extreme caution when installing a custom recovery partition as the process often contains kernel and radio updates Could render the device unusable bricked. Extensive testing must be performed on a lab device first to ensure no issues occur. Examiners should understand what is being modified on the device during the installation of a custom recovery firmware.

26 Custom Recovery Rom Examples Cyanogenmod Recovery (clockworkmod) TeamWin (TWRP)

27 Custom Recovery Modifications We are going to modify in the Cyanogenmod source code The source code is writen in C Programming language.

28 Custom Recovery Modifications Remove Security Pattern The pattern file is at /data/system/gesture.key Other security pattern are in file /data/system/password.key We will also use the pre defined function system. Which will enable us to run Linux commands like ls,rm, etc system("rm /data/system/gesture.key"); //remove the pattern system("rm /data/system/password.key"); // remove any other lock like face or voice or password.

29 Custom Recovery Modification Physical imaging In order to do physical imaging you have to run command like dd if = /dev/sda1 of =/media/pc/file.dd Where if is the source(the media whci we want to image). The of is the destination So We have to know: the name of the driver of the source partition (i.e /data or /system) The name of the destination driver (USB Flash for example)

30 How To Know The Name Of The Driver For The Source Partition Using the file /etc/recovery.fstab We will search in the /etc/recovery.fstab till we find the driver name equivalent to the partition we want to image

31 Who to Know The name Of The Destination Driver (USB Flash for example) Vold: The volume manager daemon. Automatically Mount Sdcard and USB Flash memory (If connected) When Device Startup OR When Connected We are going to search in the Vold till we find USB or SdCard.

32 How Data are Stored In Android Android provides developers with five methods for storing data to a device Shared preferences Internal storage External storage SQLite Network

33 How Data are Stored In Android(Shared preferences) Allow a developer to store key-value pairs of primitive data types in a lightweight XML format. /data/data/<com.android.contacts>/shared_prefs Used to set the programs configuartion

34 How Data are Stored In Android (Internal storage) Contain more complicated data structures. The files are stored in the application s /data/data subdirectory. Files can only be read by the application. Indicate data that may be of interest to a forensic analyst

35 How Data are Stored In Android (External storage) Files stored on the internal device s storage have strict security and location parameters. Files on the various external storage devices have far fewer constraints. Emulated SdCard and Actual SdCard Examples Pictures,Videos,,etc

36 How Data are Stored In Android (SQLite) Databases are used for structured data storage SQLite is a popular database format appearing in many mobile systems traditional operating systems. /data/data/<packagename>/databases. SQLite databases are a rich source of forensic data.

37 How Data are Stored In Android (Network) Very few applications took advantage of the network as a storage option. The Android Developer web site provides very few details for those interested in network storage. You can use the network (when it is available) to store and retrieve data on your own web-based services. Dropbox Google Drive Onedrive

38 Example of Useful Data extracted from Android Image Android Browser Password / data/data/com.android.browser/databases/webview.d b.table select * from password; data/com.android.chrome/app_chrome/default/login Open Login Data file using txt viewer /data/misc/wifi/ Open wpa_supplicant.conf file using txt viewer.

39 References Android Forensics by Andrew Hoog Android Hacker's Handbook Joshua J. Drake,Pau Oliva Fora,Zach Lanier,Collin Mulliner,Stephen A. Ridley andgeorg Wicherski Developing Process for Mobile Device Forensics Det. Cynthia A. Murphy Android Forensics, Part 1: How we recovered (supposedly) erased data forum.xda-developers.com/galaxy-nexus/general/guide-phone-backup-unlock-ro ot-t

40

41 ?

Android Forensics. Investigation, Analysis, Google Android. and Mobile Security for. Andrew Hoog. John McCash, Technical Editor SYNGRESS

Android Forensics. Investigation, Analysis, Google Android. and Mobile Security for. Andrew Hoog. John McCash, Technical Editor SYNGRESS Android Forensics Investigation, Analysis, and Mobile Security for Google Android Andrew Hoog John McCash, Technical Editor AMSTERDAM BOSTON. HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO.

More information

Android Forensics: Simplifying Cell Phone Examinations

Android Forensics: Simplifying Cell Phone Examinations Android Forensics: Simplifying Cell Phone Examinations Jeff Lessard, Gary Kessler 2010 Presented By: Manaf Bin Yahya Outlines Introduction Mobile Forensics Physical analysis Logical analysis CelleBrite

More information

Digital Forensics Mobile Device Data Extraction. Crime Scene/Digital and Multimedia Division

Digital Forensics Mobile Device Data Extraction. Crime Scene/Digital and Multimedia Division Mobile Device Data Extraction 12. MOBILE DEVICE DATA EXTRACTION PROCEDURE 12.1. Purpose 12.1.1. The purpose of this procedure is to extract data from mobile devices and/or removable media utilizing the

More information

and Security Testing Shawn Valle gmail. com May 2013

and Security Testing Shawn Valle gmail. com May 2013 and Security Testing Shawn Valle shawnvalle @ gmail. com May 2013 Introductions 16 years in IT and security (CISSP, MCP, LCP) Co-established FFRDC s Mobile Security Practice in 2010, leading engineering

More information

Rooting Android. Lecture 10. Security of Mobile Devices. SMD Rooting Android, Lecture 10 1/33

Rooting Android. Lecture 10. Security of Mobile Devices. SMD Rooting Android, Lecture 10 1/33 Rooting Android Lecture 10 Security of Mobile Devices 2018 SMD Rooting Android, Lecture 10 1/33 Root Root Access on Different Types of Builds Root Access on Production Builds Full Rooting Tutorial Bibliography

More information

FORENSIC ANALYSIS OF WECHAT

FORENSIC ANALYSIS OF WECHAT FORENSIC ANALYSIS OF WECHAT ON ANDROID SMARTPHONES Songyang Wu, Yong Zhang, Xupeng Wang, Xiong Xiong*, Lin Du Presented: Negamiye Arlene 2017 Nov 6th Content Introduction Related Works WeChat Forensics

More information

CompTIA A+ Accelerated course for & exams

CompTIA A+ Accelerated course for & exams CompTIA A+ Accelerated course for 220-901 & 220-902 exams Course overview Target Audience This course is for Participants wishing to take and pass both CompTIA A+ exams (220-901 and 220-902) exam. It is

More information

Android Forensics Techniques. Zlatko Jovanovic. Instructor Dr DeAndre Redd. International Academy of Design and Technology

Android Forensics Techniques. Zlatko Jovanovic. Instructor Dr DeAndre Redd. International Academy of Design and Technology Android Forensics Techniques Zlatko Jovanovic Instructor Dr DeAndre Redd International Academy of Design and Technology January 28, 2012 Abstract Paper discusses different specific forensic techniques

More information

Android Bootloader and Verified Boot

Android Bootloader and Verified Boot Android Bootloader and Verified Boot Lecture 7 Security of Mobile Devices 2018 SMD Android Bootloader and Verified Boot, Lecture 7 1/38 Bootloader Recovery Verified Boot Bibliography SMD Android Bootloader

More information

Department of Computer Science and Engineering, Sri Jayachamarajendra College of Engineering, Mysore, Karnataka

Department of Computer Science and Engineering, Sri Jayachamarajendra College of Engineering, Mysore, Karnataka FUTURE DIRECTIONS FOR FIRMWARE FLASHING ON ANDROID DEVICES Yadunandan Laxman Huded* & S. Srinath** Department of Computer Science and Engineering, Sri Jayachamarajendra College of Engineering, Mysore,

More information

Mobile Devices Villanova University Department of Computing Sciences D. Justin Price Spring 2014

Mobile Devices Villanova University Department of Computing Sciences D. Justin Price Spring 2014 Mobile Devices Villanova University Department of Computing Sciences D. Justin Price Spring 2014 INTRODUCTION The field of computer forensics has long been centered on traditional media like hard drives.

More information

Install ADB on Windows

Install ADB on Windows Android Debug Bridge or better known as ADB is a powerful and versatile tool that lets you do a lot of things like pulling out logs, installing and uninstalling apps, transferring files, rooting and flashing

More information

Enabler Manual Device-Based Anonymization

Enabler Manual Device-Based Anonymization Enabler Manual Device-Based Anonymization Project name Short name 5G Enablers for Network and System Security and Resilience 5G-ENSURE Grant agreement 671562 Call Authors H2020-ICT-2014-2 TIIT: Madalina

More information

Mobile Hacking & Security. Ir. Arthur Donkers & Ralph Moonen, ITSX

Mobile Hacking & Security. Ir. Arthur Donkers & Ralph Moonen, ITSX Mobile Hacking & Security Ir. Arthur Donkers & Ralph Moonen, ITSX Introduction Who we are: Ir. Arthur Donkers Ralph Moonen ITSX 2 Agenda Mobile Threats BYOD iphone and Android hacking 3 Threats Various:

More information

CompTIA A+ Certification ( ) Study Guide Table of Contents

CompTIA A+ Certification ( ) Study Guide Table of Contents CompTIA A+ Certification (220-902) Study Guide Table of Contents Course Introduction About This Course About CompTIA Certifications Module 1 / Supporting Windows 1 Module 1 / Unit 1 Windows Operating System

More information

Intro. This program can retrieve messages, call logs, pictures, contacts, apps, calendar events, s, passwords, deleted data, and much more.

Intro. This program can retrieve messages, call logs, pictures, contacts, apps, calendar events,  s, passwords, deleted data, and much more. FAQ Intro Thank you for purchasing MOBILedit Forensic Express. This tool preforms mobile phone content extractions and is used by professionals in law enforcement, military as well as the corporate and

More information

OXYGEN SOFTWARE OXYGEN FORENSIC KIT

OXYGEN SOFTWARE OXYGEN FORENSIC KIT OXYGEN SOFTWARE OXYGEN FORENSIC KIT Oxygen Forensic Kit complete out-of-the-box solution When to start? Immediately! Oxygen Forensic Kit is a complete set you can quickly use right out of the box. It does

More information

This version has been archived. Find the current version at on the Current Documents page. Archived Version. Capture of Live Systems

This version has been archived. Find the current version at   on the Current Documents page. Archived Version. Capture of Live Systems Scientific Working Group on Digital Evidence Capture of Live Systems Disclaimer: As a condition to the use of this document and the information contained therein, the SWGDE requests notification by e-mail

More information

Guide to Computer Forensics and Investigations Fourth Edition. Chapter 2 Understanding Computer Investigations

Guide to Computer Forensics and Investigations Fourth Edition. Chapter 2 Understanding Computer Investigations Guide to Computer Forensics and Investigations Fourth Edition Chapter 2 Understanding Computer Investigations Objectives Explain how to prepare a computer investigation Apply a systematic approach to an

More information

Android System Development Training 4-day session

Android System Development Training 4-day session Android System Development Training 4-day session Title Android System Development Training Overview Understanding the Android Internals Understanding the Android Build System Customizing Android for a

More information

MOBILedit Forensic Express

MOBILedit Forensic Express MOBILedit Forensic Express All-in-one phone forensic tool from pioneers in the field MOBILedit Forensic Express is a phone and cloud extractor, data analyzer and report generator all in one solution. A

More information

A Study of User Data Integrity During Acquisition of Android Devices

A Study of User Data Integrity During Acquisition of Android Devices DIGITAL FORENSIC RESEARCH CONFERENCE By Namheun Son, Yunho Lee, Dohyun Kim, Joshua I. James, Sangjin Lee and Kyungho Lee Presented At The Digital Forensic Research Conference DFRWS 2013 USA Monterey, CA

More information

PCI Compliance Updates

PCI Compliance Updates PCI Compliance Updates PCI Mobile Payment Acceptance Security Guidelines Adam Goslin, Chief Operations Officer AGoslin@HighBitSecurity.com Direct: 248.388.4328 PCI Guidance February, 2013 - PCI Mobile

More information

Smartphone Security Overview

Smartphone Security Overview Smartphone Security Overview Jagdish Prasad Achara Speaker, Claude Castelluccia ENSIMAG, Grenoble 11 décembre 2013 J. P. Achara, C. Castelluccia (ENSIMAG, Grenoble) Smartphone Security Overview 11 décembre

More information

SSDD and SSDF Handset seizure Paraben * Seizure test SE K850, SE Xperia

SSDD and SSDF Handset seizure Paraben * Seizure test SE K850, SE Xperia SSDD and SSDF Handset seizure Paraben * Seizure test SE K850, SE Xperia Small Scale Digital Device (SSDD) SSDD definition A Small Scale Digital Device is any of a variety of small form factor devices utilizing

More information

Unlock bootloader samsung with odin

Unlock bootloader samsung with odin Unlock bootloader samsung with odin Huawei Mate 20 Tidbits: Wireless Easy Projection, HiVision details, and more. When prompted by the phone, press the Volume Up key then continue to Part 2. I have tried

More information

Computer Hacking Forensic Investigator. Module X Data Acquisition and Duplication

Computer Hacking Forensic Investigator. Module X Data Acquisition and Duplication Computer Hacking Forensic Investigator Module X Data Acquisition and Duplication Scenario Allen a forensic investigator was hired by a bank to investigate employee fraud. The bank has four 30 GB machines

More information

Android: Under the Hood. GDG-SG DevFest 5th Nov 2016 Jason Zaman

Android: Under the Hood. GDG-SG DevFest 5th Nov 2016 Jason Zaman Android: Under the Hood GDG-SG DevFest 5th Nov 2016 Jason Zaman Overview Who am I? Android Block Diagram Mobile Hardware Filesystem Layout Startup Linux Kernel Bionic libc Ashmem / Binder IPC Zygote Dalvik

More information

Galaxy Note Root Guide. by Max Lee

Galaxy Note Root Guide. by Max Lee Galaxy Note Root Guide by Max Lee Copyright 2012 by RootGalaxyNote.com Table of Contents How to Root Galaxy Note! [GT-N7000] Why root your Galaxy Note? How to Root Your Galaxy Note! (This is for GT-N7000

More information

MOBILE DEVICE FORENSICS

MOBILE DEVICE FORENSICS MOBILE DEVICE FORENSICS Smart phones and other handheld electronics have become an important part of our everyday lives and the ever changing technology is making these devices a major source of digital

More information

Clockworkmod Won't Boot Into Recovery Droid X2

Clockworkmod Won't Boot Into Recovery Droid X2 Clockworkmod Won't Boot Into Recovery Droid X2 Entering and using recovery mode represents maybe the most common Android into recovery) is an official procedure, which means that you won't lose the stock

More information

Macintosh Forensic Survival Course

Macintosh Forensic Survival Course Macintosh Forensic Survival Course Duration: 5 days/level Date: On demand Venue: On demand Language: English Seat availability: On demand (recommended no more than 12) Learning Objectives: Macintosh Forensic

More information

Lamine Aouad, Tahar Kechadi, Justin Trentesaux and Nhien-An Le-Khac

Lamine Aouad, Tahar Kechadi, Justin Trentesaux and Nhien-An Le-Khac Chapter 11 AN OPEN FRAMEWORK FOR SMARTPHONE EVIDENCE ACQUISITION Lamine Aouad, Tahar Kechadi, Justin Trentesaux and Nhien-An Le-Khac Abstract The forensic processes and procedures for performing a bit-for-bit

More information

File Cover. Arrange your Gallery into different folder names. (Move your Camera or

File Cover. Arrange your Gallery into different folder names. (Move your Camera or File Cover Arrange your Gallery into different folder names. (Move your Camera or Holiday Friends etc.) etc ) Download pictures into Holiday, Folder Organizer Group items according to labels and create

More information

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edit9on

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edit9on Chapter 2: Operating-System Structures Operating System Concepts 9 th Edit9on Silberschatz, Galvin and Gagne 2013 Chapter 2: Operating-System Structures 1. Operating System Services 2. User Operating System

More information

CompTIA A+ Certification: Labs. Course Outline. CompTIA A+ Certification: Labs. 07 Dec

CompTIA A+ Certification: Labs. Course Outline. CompTIA A+ Certification: Labs. 07 Dec Course Outline CompTIA A+ Certification: 220-902 Labs 07 Dec 2018 Contents 1. Expert Instructor-Led Training 2. ADA Compliant & JAWS Compatible Platform 3. State of the Art Educator Tools 4. Award Winning

More information

Scientific Working Group on Digital Evidence

Scientific Working Group on Digital Evidence SWGDE Best Practices for Mobile Device Evidence Collection & Preservation, The version of this document is in draft form and is being provided for comment by all interested parties for a minimum period

More information

Cellebrite Digital Forensics for Legal Professionals (CDFL)

Cellebrite Digital Forensics for Legal Professionals (CDFL) Global forensic training Course description Level Intermediate Length Two days (14 hours) Training Track Investigative The two-day Cellebrite Digital Forensics for Legal Professionals course is designed

More information

Running Head: IPHONE FORENSICS 1. iphone Forensics Jaclyn Sottilaro Monica Figueroa-Santos Antonina Spinella Saint Leo University

Running Head: IPHONE FORENSICS 1. iphone Forensics Jaclyn Sottilaro Monica Figueroa-Santos Antonina Spinella Saint Leo University Running Head: IPHONE FORENSICS 1 iphone Forensics Jaclyn Sottilaro Monica Figueroa-Santos Antonina Spinella Saint Leo University IPHONE FORENSICS 2 Abstract With an ever-growing evolution on technology,

More information

Chapter 2. Operating-System Structures

Chapter 2. Operating-System Structures Chapter 2 Operating-System Structures 2.1 Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System Calls System Programs Operating System

More information

ROM FLASHING INSTRUCTIONS FOR ONEPLUS 3 / 3T

ROM FLASHING INSTRUCTIONS FOR ONEPLUS 3 / 3T ROM FLASHING INSTRUCTIONS FOR ONEPLUS 3 / 3T 1. Locate the red USB C cable that came with your phone, and plug your phone into the computer. The OnePlus device will automatically boot a virtual CD drive.

More information

OXYGEN SOFTWARE OXYGEN FORENSIC KIT

OXYGEN SOFTWARE OXYGEN FORENSIC KIT OXYGEN SOFTWARE OXYGEN FORENSIC KIT Oxygen Forensic Kit complete out-of-the-box solution When to start? Immediately! Oxygen Forensic Kit is a complete set you can quickly use right out of the box. It does

More information

Securing Android-Powered Mobile Devices Using SELinux

Securing Android-Powered Mobile Devices Using SELinux Securing Android-Powered Mobile Devices Using SELinux This paper appears in: Security & Privacy, IEEE Issue Date: May- June 2010 Volume: 8 Issue:3 On page(s): 36-44 Asaf Shabtai, Yuval Fledel, and Yuval

More information

How To Install Apps On Nook Color Using Adb

How To Install Apps On Nook Color Using Adb How To Install Apps On Nook Color Using Adb Whether you have existing apps or are starting from scratch, it's easy to get your NOOK Color runs the Android 2.2 (Froyo) operating system and works with the

More information

File Synchronization using API Google Drive on Android Operating System

File Synchronization using API Google Drive on Android Operating System File Synchronization using API Google Drive on Android Operating System Agustinus Noertjahyana, Kevin Darmawan, Justinus Andjarwirawan Informatics Engineering Department Petra Christian University Surabaya,

More information

Quick Heal Mobile Security. Anti-Theft Security. Real-Time Protection. Safe Online Banking & Shopping.

Quick Heal Mobile Security. Anti-Theft Security. Real-Time Protection. Safe Online Banking & Shopping. Anti-Theft Security. Real-Time Protection. Safe Online Banking & Shopping. Product Highlights With an easy-to-update virus protection and a dynamic yet simple interface, virus removal from your mobile

More information

IT-G400 Series. Android 6.0 Quick Start Guide. This document is a Development Guide Book for IT-G400 application developers. Ver 1.

IT-G400 Series. Android 6.0 Quick Start Guide. This document is a Development Guide Book for IT-G400 application developers. Ver 1. IT-G400 Series Android 6.0 Quick Start Guide This document is a Development Guide Book for IT-G400 application developers. Ver 1.04 No part of this document may be produced or transmitted in any form or

More information

COURSE OUTLINE: A+ COMPREHENSIVE

COURSE OUTLINE: A+ COMPREHENSIVE COURSE OUTLINE: A+ COMPREHENSIVE Course Outline CompTIA A+ Comprehensive Chapter Outline 1. The Path of the PC Tech What is the CompTIA A+? How to Pass the A+ Exams 2. Operational Procedures Professionalism

More information

Quick Heal Total Security for Android. Anti-Theft Security. Web Security. Backup. Real-Time Protection. Safe Online Banking & Shopping.

Quick Heal Total Security for Android. Anti-Theft Security. Web Security. Backup. Real-Time Protection. Safe Online Banking & Shopping. Quick Heal Total Security for Android Anti-Theft Security. Web Security. Backup. Real-Time Protection. Safe Online Banking & Shopping. Product Highlights Complete protection for your Android device that

More information

BACKING UP YOUR COMPUTER PRESENTED BY SAM STAHL

BACKING UP YOUR COMPUTER PRESENTED BY SAM STAHL BACKING UP YOUR COMPUTER PRESENTED BY SAM STAHL CLASS OBJECTIVES Learn how to store your computer s content safely in case of catastrophic failure. Explore back up options for both Microsoft and Apple

More information

Quick Heal Mobile Security. Free protection for your Android phone against virus attacks, unwanted calls, and theft.

Quick Heal Mobile Security. Free protection for your Android phone against virus attacks, unwanted calls, and theft. Quick Heal Mobile Security Free protection for your Android phone against virus attacks, unwanted calls, and theft. Product Highlights Complete protection for your Android device that simplifies security

More information

Lab: Setting up PL-App with a Raspberry Pi

Lab: Setting up PL-App with a Raspberry Pi Lab Topology Objectives Set up a Raspberry Pi board as a PL-App device Use PL-App Launcher to provision and discover PL-App devices Background Cisco Prototyping Lab is a set of hardware and software components

More information

What's new 9 Magnet AXIOM 11 System requirements 12

What's new 9 Magnet AXIOM 11 System requirements 12 USER GUIDE CONTENTS What's new 9 Magnet AXIOM 11 System requirements 12 Administrator permissions 13 Clock speed and cores 13 Memory 13 Storage devices 13 Virtualization 13 Installing Magnet AXIOM 14 Set

More information

Upgrading Prime Optical

Upgrading Prime Optical CHAPTER 6 You cannot perform a full upgrade from an earlier Cisco Transport Manager (CTM) or Prime Optical release. This section describes how to use the Cisco Prime Optical 9.8 Data Migrator wizard to

More information

Certified Digital Forensics Examiner

Certified Digital Forensics Examiner Certified Digital Forensics Examiner ACCREDITATIONS EXAM INFORMATION The Certified Digital Forensics Examiner exam is taken online through Mile2 s Assessment and Certification System ( MACS ), which is

More information

User Manual. Microdigital IP cameras with built-in Ivideon software

User Manual. Microdigital IP cameras with built-in Ivideon software User Manual Microdigital IP cameras with built-in Ivideon software Table of Contents Introduction to Ivideon... What is Ivideon about?... Why use an IP camera with built-in Ivideon software?... How to

More information

Android - open source mobile platform

Android - open source mobile platform Android - open source mobile platform Alexander Schreiber http://www.thangorodrim.de/ Chemnitzer Linux-Tage 2009 Alexander Schreiber Android - open source mobile

More information

Installing and configuring an Android device emulator. EntwicklerCamp 2012

Installing and configuring an Android device emulator. EntwicklerCamp 2012 Installing and configuring an Android device emulator EntwicklerCamp 2012 Page 1 of 29 Table of Contents Lab objectives...3 Time estimate...3 Prerequisites...3 Getting started...3 Setting up the device

More information

Android AOSP Overview. Karthik Dantu and Steve Ko

Android AOSP Overview. Karthik Dantu and Steve Ko Android AOSP Overview Karthik Dantu and Steve Ko Administrivia Any issues in building? Android Build System & Source Tree Today s goal Getting to know the build system Navigating the source tree Resources

More information

COLLEGE OF ENGINEERING, NASHIK-4

COLLEGE OF ENGINEERING, NASHIK-4 Pune Vidyarthi Griha s COLLEGE OF ENGINEERING, NASHIK-4 DEPARTMENT OF COMPUTER ENGINEERING 1) What is Android? Important Android Questions It is an open-sourced operating system that is used primarily

More information

MPE+ Frequently Asked Questions & Troubleshooting

MPE+ Frequently Asked Questions & Troubleshooting MPE+ Frequently Asked Questions & Troubleshooting Version 7 (4.5.0.45078) 2011 AccessData Group, LLC Table of Contents Mobile Forensics Background Knowledge... 4 Q. What is the difference between Computer

More information

How To Manually Update Android Apps On Kindle Fire Hd Without Rooting

How To Manually Update Android Apps On Kindle Fire Hd Without Rooting How To Manually Update Android Apps On Kindle Fire Hd Without Rooting Just got a New Kindle Fire HD (The kid won it) It says 4th generation 7 inch Fire HD/ In of the HTC One M9 is receiving an over-the-air

More information

IJRDTM Kailash ISBN No Vol.17 Issue

IJRDTM Kailash ISBN No Vol.17 Issue ABSTRACT ANDROID OPERATING SYSTEM : A CASE STUDY by Pankaj Research Associate, GGSIP University Android is a software stack for mobile devices that includes an operating system, middleware and key applications.

More information

Chapter 10: Mobile, Linux, and OS X Operating Systems

Chapter 10: Mobile, Linux, and OS X Operating Systems Chapter 10: Mobile, Linux, and OS X Operating Systems IT Essentials v6.0 ITE v6.0 1 Chapter 10 - Sections & Objectives 10.1 Mobile Operating Systems Explain the purpose and characteristics of mobile operating

More information

User Guide Software Pdf Samsung Galaxy S2 Skyrocket

User Guide Software Pdf Samsung Galaxy S2 Skyrocket User Guide Software Pdf Samsung Galaxy S2 Skyrocket AT&T released a new software update for the Samsung Galaxy S II Skyrocket (i727) via Firmware Over the Air (FOTA) over User-Initiated Software Update.

More information

1. Introduction. 1.1 Cosmo Specifications

1. Introduction. 1.1 Cosmo Specifications 1. Introduction 1.1 Cosmo Specifications Details CPU Memory Storage Operating System Connectivity Sensor Camera Display Video Formats Description Quad Core 1.3 GHz ARM Cortex A7 Processor 512MB RAM 8 GB

More information

Release Notes Zebra TC51 and TC56 Android M MG (GMS)

Release Notes Zebra TC51 and TC56 Android M MG (GMS) Release Notes Zebra TC51 and TC56 01-21- 04.1MG (GMS) Introduction Description Known Issues and Limitation Contents Device Compatibility Installation Requirements Installation Instructions Change Notes

More information

Data Extraction on MTK-based Android Mobile Phone Forensics

Data Extraction on MTK-based Android Mobile Phone Forensics Journal of Digital Forensics, Security and Law Volume 10 Number 4 Article 3 2015 Data Extraction on MTK-based Android Mobile Phone Forensics Joe Kong The University of Hong Kong Follow this and additional

More information

Lab E2: bypassing authentication and resetting passwords

Lab E2: bypassing authentication and resetting passwords Lab E2: bypassing authentication and resetting passwords TTM4175 September 7, 2015 The purpose of this lab is to learn about techniques for bypassing the authentication and access control of Windows and

More information

HotSpot USER MANUAL. twitter.com/vortexcellular facebook.com/vortexcellular instagram.com/vortexcellular

HotSpot USER MANUAL.  twitter.com/vortexcellular facebook.com/vortexcellular instagram.com/vortexcellular HotSpot USER MANUAL www.vortexcellular.com twitter.com/vortexcellular facebook.com/vortexcellular instagram.com/vortexcellular 1 Contents Quick User Guide... 2 1. Power On/Off... 2 2. Turn On /Off Screen...

More information

Android Jelly Bean Manual Install Application On Sd Card

Android Jelly Bean Manual Install Application On Sd Card Android Jelly Bean Manual Install Application On Sd Card All of them except the sd card,have really low space and I can't install 2 but i can move apps to sdcard and my other fone which 4.1.2 doesnt have

More information

Quick Heal Total Security for Android. Anti-Theft Security. Web Security. Backup. Real-Time Protection. Safe Online Banking & Shopping.

Quick Heal Total Security for Android. Anti-Theft Security. Web Security. Backup. Real-Time Protection. Safe Online Banking & Shopping. Anti-Theft Security. Web Security. Backup. Real-Time Protection. Safe Online Banking & Shopping. Product Highlights Complete protection for your Android device that simplifies security and significantly

More information

Android Forensics Concept

Android Forensics Concept Android Forensics Concept Written by Zlatko Jovanovic Widely use of personal handheld devices, opened the new area in computer forensics field, called phone, cell, or mobile forensics. In the last few

More information

Access android system files from pc

Access android system files from pc Access android system files from pc Can I access an Android mobile device from my own Android device without having physical access to the target device using only its MAC addres. Avere Accesso a Tutti

More information

SD Card with Eclipse/Emulator

SD Card with Eclipse/Emulator SD Card with Eclipse/Emulator Creating the SD Card "image" file (a file representation of a physical SD Card) Assume Cygwin bash shell: $ cd c: $ mkdir sdcards $ cd sdcards $ Android\android-sdk\tools\mksdcard

More information

Four Components of a Computer System

Four Components of a Computer System Four Components of a Computer System Operating System Concepts Essentials 2nd Edition 1.1 Silberschatz, Galvin and Gagne 2013 Operating System Definition OS is a resource allocator Manages all resources

More information

Survey on Android Forensic Tools and Methodologies

Survey on Android Forensic Tools and Methodologies Survey on Android Forensic Tools and Methodologies Venkateswara Rao V. CSE, UCEK, JNTUK Kakinada, India A. S. N. Chakravarthy CSE, UCEK, JNTUK Kakinada, India ABSTRACT In recent days, Android Operating

More information

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 5, Oct-Nov, 2013 ISSN:

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 5, Oct-Nov, 2013 ISSN: Friendly ARM MINI2440 & Dalvik Virtual Machine with Android Sangamesh Gama 1 and Manjula C 2 1 Assistant Professor, Department of Computer Science and Engineering, BKIT Bhalki, India 2 Associate Software

More information

Introduction. Assessment Test. Part I

Introduction. Assessment Test. Part I Contents Introduction Assessment Test xxix lvii Part I 220 901 1 Chapter 1 Motherboards, Processors, and Memory 3 Identifying Components of Motherboards 5 System Board Form Factors 6 System Board Components

More information

Definitions referenced from the Android Developers Guide or the FreeYourAndroid.com dictionary.

Definitions referenced from the Android Developers Guide or the FreeYourAndroid.com dictionary. Android Dictionary When first exploring a new culture, it is important to learn their language, their method of communication. Oftentimes grunts and hand-gestures won t suffice, nor will speaking louder

More information

Online Services. Sept 2017

Online Services. Sept 2017 Online Services Sept 2017 Why I use these services? Syncing between various devices is easy Sync between Desktop, Laptop and ipad Sharing files Better than sending attachments Online backup Keep additional

More information

Quick Heal Mobile Security. Free protection for your Android phone against virus attacks, unwanted calls, and theft.

Quick Heal Mobile Security. Free protection for your Android phone against virus attacks, unwanted calls, and theft. Free protection for your Android phone against virus attacks, unwanted calls, and theft. Product Highlights With an easy-to-update virus protection and a dynamic yet simple interface, virus removal from

More information

Android Gingerbread Manually Update To Jelly Bean Features

Android Gingerbread Manually Update To Jelly Bean Features Android Gingerbread Manually Update To Jelly Bean 4.1.2 Features How to upgrade android 4.0, 4.1, 4.1.1, 4.1.2, 4.2.2 to 4.3 jellybean, 4.4, 4.4.1, 4.4.3, 4.4.4. Install latest Official Android 2.3.6 Gingerbread

More information

Forensic analysis of the android file system YAFFS2

Forensic analysis of the android file system YAFFS2 Edith Cowan University Research Online Australian Digital Forensics Conference Security Research Centre Conferences 2011 Forensic analysis of the android file system YAFFS2 Darren Quick University of South

More information

PL-I Assignment Broup B-Ass 5 BIOS & UEFI

PL-I Assignment Broup B-Ass 5 BIOS & UEFI PL-I Assignment Broup B-Ass 5 BIOS & UEFI Vocabulary BIOS = Basic Input Output System UEFI = Unified Extensible Firmware Interface POST= Power On Self Test BR = Boot Record (aka MBR) BC =Boot Code (aka

More information

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems 5.0 Introduction 1. What controls almost all functions on a computer? The operating system 5.1 Explain the purpose of an operating system 2.

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation Linux+ Guide to Linux Certification, Third Edition Chapter 6 Advanced Installation Objectives Describe the types and structure of SCSI devices Explain the different levels of RAID and types of RAID configurations

More information

Android Forensics: Investigation, Analysis And Mobile Security For Google Android PDF

Android Forensics: Investigation, Analysis And Mobile Security For Google Android PDF Android Forensics: Investigation, Analysis And Mobile Security For Google Android PDF Android Forensics: Investigation, Analysis, and Mobile Security for Google Android examines the Android mobile platform

More information

For a complete list of modifications included in this update please refer to the Release Notes section at the bottom of this document.

For a complete list of modifications included in this update please refer to the Release Notes section at the bottom of this document. GALAXY S 2.2 UPDATE New features and enhancements - Speed enhancements - Flash 10.x support - Samsung Media Hub - Save apps to your SD card to save internal memory - Support for new Google apps and other

More information

COMP116 Final Project. Shuyan Guo Advisor: Ming Chow

COMP116 Final Project. Shuyan Guo Advisor: Ming Chow Digital Forensics with ios Devices COMP116 Final Project Shuyan Guo Shuyan.guo@tufts.edu Advisor: Ming Chow Abstract This project focuses on ios device forensics. The study provides a general overview

More information

PrepAwayExam. High-efficient Exam Materials are the best high pass-rate Exam Dumps

PrepAwayExam.   High-efficient Exam Materials are the best high pass-rate Exam Dumps PrepAwayExam http://www.prepawayexam.com/ High-efficient Exam Materials are the best high pass-rate Exam Dumps Exam : 9L0-064 Title : OS X v10.8 Troubleshooting Exam Vendors : Apple Version : DEMO 1 /

More information

Hackveda Training - Ethical Hacking, Networking & Security

Hackveda Training - Ethical Hacking, Networking & Security Hackveda Training - Ethical Hacking, Networking & Security Day1: Hacking windows 7 / 8 system and security Part1 a.) Windows Login Password Bypass manually without CD / DVD b.) Windows Login Password Bypass

More information

OXYGEN SOFTWARE OXYGEN FORENSIC KIT

OXYGEN SOFTWARE OXYGEN FORENSIC KIT OXYGEN SOFTWARE OXYGEN FORENSIC KIT Oxygen Forensic Kit complete out-of-the-box solution When to start? Immediately! Oxygen Forensic Kit is a complete set you can quickly use right out of the box. It does

More information

Paraben s Data Recovery Stick User Manual

Paraben s Data Recovery Stick User Manual Paraben s Data Recovery Stick User Manual Contents About Paraben s Data Recovery Stick... 3 System Requirements... 3 Getting Started... 4 Data Recovery... 4 Application User Interface... 5 Main Page...

More information

Contact Information. Contact Center Operating Hours. Other Contact Information. Contact Monday through Thursday Friday

Contact Information. Contact Center Operating Hours. Other Contact Information. Contact Monday through Thursday Friday Contact Information Contact Center Operating Hours Contact Monday through Thursday Friday Phone: 1.801.796.0944 8 AM 5 PM Eastern Time 8 AM 3 PM Eastern Time Online chat: http://support.paraben.com 10

More information

Embedded lightweight unix

Embedded lightweight unix Embedded lightweight unix ELWIX its free now! Universal embedded system http://www.elwix.org/ Michael Pounov Since 2004 like propriatary OS Give best practices and features from *BSD

More information

Digital Forensics Practicum CAINE 8.0. Review and User s Guide

Digital Forensics Practicum CAINE 8.0. Review and User s Guide Digital Forensics Practicum CAINE 8.0 Review and User s Guide Ana L. Hernandez Master of Science in Cybersecurity Digital Forensics Concentration University of South Florida 12-8-2017 Table of Contents

More information

Root User Guide Android Jelly Bean Operating System

Root User Guide Android Jelly Bean Operating System Root User Guide Android 4.1 1 Jelly Bean Operating System microsoft-toolkit-2-4-6-with-keygen-downloads, Arriva Android 4.1.2 per Galaxy altium designer 13 1 2 build 27559 setup key windows In this post

More information

Ch 1: The Mobile Risk Ecosystem. CNIT 128: Hacking Mobile Devices. Updated

Ch 1: The Mobile Risk Ecosystem. CNIT 128: Hacking Mobile Devices. Updated Ch 1: The Mobile Risk Ecosystem CNIT 128: Hacking Mobile Devices Updated 1-12-16 The Mobile Ecosystem Popularity of Mobile Devices Insecurity of Mobile Devices The Mobile Risk Model Mobile Network Architecture

More information

Course Outline. Pearson: CompTIA A Cert Guide (Course & Labs) Pearson: CompTIA A Cert Guide (Course & Labs)

Course Outline. Pearson: CompTIA A Cert Guide (Course & Labs)   Pearson: CompTIA A Cert Guide (Course & Labs) Course Outline Pearson: CompTIA A+ 220-902 Cert Guide (Course & 08 May 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led

More information