Difference between pages "User talk:BobGezelter" and "Converting Binary Plists"
From Forensics Wiki
(Difference between pages)
m (Welcome!) |
Phillmoore87 (Talk | contribs) (Created page with "== Converting Binary Plists == Binary plists are the files that Apple products use to store information. The easiest way to view them is to convert them to xml. The program plut...") |
||
| Line 1: | Line 1: | ||
| − | + | == Converting Binary Plists == | |
| − | + | Binary plists are the files that Apple products use to store information. The easiest way to view them is to convert them to xml. | |
| − | + | ||
| − | + | The program plutil is native to OSX, however it is also included when iTunes is installed on a Windows PC. | |
| + | |||
| + | plutil on a Windows PC is stored in: | ||
| + | Program Files (x86)\Common Files\Apple\Apple Application Support | ||
| + | Which can be added to the PATH in Environmental variables so plutil can be run from anywhere | ||
| + | |||
| + | To convert Binary plists to XML run the command: | ||
| + | '''plutil -convert xml1 file.plist''' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | == Links == | ||
| + | plutil man page - [[http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/plutil.1.html]] | ||
Revision as of 19:19, 9 September 2011
Converting Binary Plists
Binary plists are the files that Apple products use to store information. The easiest way to view them is to convert them to xml.
The program plutil is native to OSX, however it is also included when iTunes is installed on a Windows PC.
plutil on a Windows PC is stored in: Program Files (x86)\Common Files\Apple\Apple Application Support Which can be added to the PATH in Environmental variables so plutil can be run from anywhere
To convert Binary plists to XML run the command: plutil -convert xml1 file.plist
Links
plutil man page - [[1]]