Skip to content

An R package to access data from unencrypted iPhone backup files

Notifications You must be signed in to change notification settings

MrFlick/myphone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

myphone

An R package to extract contents from unencrypted iPhone backup files (SMS messages and address book/contacts)

To create an unencrypted backup, connect your iPhone to your computer and open iTunes. Find the phone in the Devices list and open the main "Summary" page to see the Backup settings. Uncheck the check box for "Encrypt iPhone backup" and then click "Back Up Now".

Usage

Here's some sample code

devtools::install_github("mrflick/myphone");

backup <- get_backup();
sms <- read_sms_data(backup);

#count sent/recieved
table(sms$type)

#distribution of sms lenth
hist(nchar(sms$text))		

References

About

An R package to access data from unencrypted iPhone backup files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages