December 2018
Beginner to intermediate
328 pages
8h 29m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Booting into Recovery Mode will not decrypt the /data partition."
A block of code is set as follows:
from subprocess import Popenfrom os import getcwdcommand = "adb pull /data/data " + getcwd() + "\data_from_device"p = Popen(command)p.communicate()
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
from subprocess import Popenfrom os import getcwdcommand = "adb pull /data/data " + getcwd() + "\data_from_device" ...
Read now
Unlock full access