PList Decoding
Ian Whiffin
Posted: 23rd October 2019
Revised: 17th November 2019

While writing ArtEx, I decided I wanted to extract both the Device Name and the iOS Version from the extracted data. I thought this would be a really simple task that would look nice in the application. Little did I realise at the time exactly what would be required to pull out these simple bits of data.

I opted to write my own DLL to parse the PLists, rather than rely on a third party plugin, and subsequently decided to make a standalone tool that made more use of it than ArtEx did, including sharing the DLL for anyone else who may benefit. "Mushy PList Viewer" was born and is available in the Software Section of this site.

But first...

What are PLists?

PLists are a type of file used by Apple for storing data such as application or device settings. There are two different types of PLists; XML and Binary PLists.

XML PLists are simple XML style documents where everything is listed consecutively in a Key/Value pair fashion.

You can see from the screen shot above that the Keys (Highlighted in red) are immediately followed by the Value (highlighted in yellow). The type of data held in the value is shown in the angle brackets and may be different data types such as STRING, INTEGER, DATA or DATE.

However, the Binary PLists are where things begin to get more complicated interesting. Taking a look at the first bytes of a BPLists we can see things are totally different:

The file header "bplist" is a clear indicator you are looking at a binary PList.

And when we start to pick out the keys, we can see that all the keys are blocked together

This is because BPLists record data in a totally different, much more complicated way.

Decoding Binary PLists

Binary PLists split all of the data into various sections of the file..

Header  
Data
Offset Table
Footer

The Header contains information about the type of file it is and the version of BPList.
The Data is the actual key names and values.
The Offset Table is a list of bytes which point to an offset location in the Data section.
The Footer contains information about how the BPList is laid out, such as the offset location of Offset table and the size of the offset objects.

This image demonstrates how the Footer points to the Offset Table which contains Offset Items which in turn point to Marker items in the Data Area. The Offset Items start with a Marker which defines what type of data the value is and it's length and is immediately followed by the value itself.

The Footer

To start decoding Binary PLists, we need to start at the very bottom of the file, specifically, the last 32 bytes which make up the Footer (Starting with the red block in the image below)

The Footer defines where in the file we can find the Marker and Offset Tables, how many objects they contain and the size of the objects.

The Footer breaks down as follows;

Position / Length Example Colour Description Example Value
0 - 6 Bytes Red Always NULL NULL
6 - 1 Byte Purple Size of the items in the Offset Table 0x02 = 2
7 - 1 Byte Blue Object reference size 0x01 = 1
8 - 8 Bytes Orange Number of objects in the Offset Table 0x82 = 130
16 - 8 Bytes Green Top of the table 0x00 = 0
24 - 8 Bytes Yellow Offset Table start 0x0B41 = 2881

Once we have worked out of the Footer, we can move on to the Offset Table.

The Offset Table

The Offset Table is a list of pointers which defines the offset location of the Values within the Data area.

Using the information from the Footer, we know that;

  • The Offset Table starts at offset 0x0B41 (Yellow)
  • There are 130 items (Orange)
  • The items are 2 bytes each (Purple).
  • That 130 items * 2 Bytes = 260 Bytes

This image shows the entire 260 bytes of the offset table, divided into 130 sets of 2 bytes.

Each of the Offset Items contains an Offset Location within the data area of the file.

The very first item in the Offset Table is at position 0x0B41 and has the value 0x0008, so we would go to offset 0x0008 (relative to the start of the file) to find the value.
The second Offset Item has the value 0x0039 so we would go to offset 0x0039 to find the value.
The third Offset Item has the value 0x005C so we would go to offset 0x005C to find the value. And so on.

Going back to the first item, we head offset 0x0008 to find out the marker for the first item.

In this case, the marker starts 0xDF.

But what does 0xDF mean? To work this out. we need to learn more about Data Types.

Data Types

There are several different Data Types used by BPLists, each can be a different size or is handled differently. A dictionary needs to be handled totally different from a Date for example.

The marker byte will always identify the Data Type but not always the length. Sometimes, more bytes are required to work out the length.

To work out a Marker, we split the marker byte into two nibbles, so DF becomes D and F. This information lets us know how to interpret the item.

D

Nibble 1 is used to identify the type of data that the value is.

Value Description
0 Either NULL or Boolean.
1 Integer
2 Real
3 Date
4 Data
5 String
6 Unicode String
8 UID Value
A Array
D Dictionary

 

F

Nibble 2 is usually used to identify the number of bytes required to form the value.

So for example, if Nibble 2 was 5, it would mean that the value was made up of the next 5 bytes. Obviously there is a limit to the number that can be displayed in a single nibble (15) so this is no good in cases where more than 15 bytes are needed for the value.

The work around for this is that if the number of bytes required is less than 15, the number is shown in the nibble, but if the number is 15 or higher. then nibble 2 is an F which means we need to take the next two bytes in order to work out the number of bytes required.

The following two bytes break down as follows:

Byte 1   Byte 2
Byte 1 is broken into two nibbles and the first nibble discarded. The second nibble is a power of 2 operator.   Byte 2 is taken as a decimal which is multiplied by the power.

For example; The two bytes may be 0x1017. We ignore the 1 and perform an exponentation power of 0 (or 2 exponent 0) get 1.
0x17 is read as decimal 23 which we then multiply by the power (1) to get 23. So we need the next 23 bytes.

However, there are some special cases;

If Nibble 1 is a 0 (NULL or Boolean) then nibble 2 is the data.

Nibble 2 Value
0 NULL
8 FALSE
9 TRUE

If Nibble 1 is a 3 (Date) the second nibble is irrelevant.
If Nibble 1 is an 8, the second nibble is the number of bytes minus 1 required for the value. ie. Add 1 to the second nibble to get the number of bytes required.

 

So in our example case of 0xDF, we now know that the item is a Dictionary and finding out the number of items in the dictionary requires us to look at the next two bytes which if you recall are 10 and 17

You may recognize this data from the example above where we worked out that 0x1017 = 23. Therefore, we now know that the dictionary contains 23 objects.

Although all BPlists have a dictionary at their root (meaning it is always the first thing that needs working out) understanding the layout of dictionaries is best saved until we've covered a few of the more basic data types.

Once you are at the Marker byte, having started in the Offset Table and found the appropriate Offset Item:

Integers/Reals (0x1?, 0x2?))

As mentioned earlier, Integers can be either 1,2,4, or 8 Bytes long depending on what the type of integer:

Number of Bytes Type
1 int8
2 int16
4 int32
8 int64

In one of out cases, we have:

The first byte (0x12) lets us know it is an integer and because 2 to the power of 2 is 4, we need to take the following 4 bytes as the value (0x5B 2A 80 EA).
We take the 5B 2A 80 EA and treat it as a Big Endian integer to get the value 1529512170.

Dates (0x4?)

Dates are saved as Double (8 Bytes) and are usually in Mac Absolute Time (seconds since Jan 1st 2001).

In this example, the Marker is 0x33 which we know to be a Date and we know there will ALWAYS be 8 bytes required.
Those 8 bytes are 0x41C18426DC8000 which when converted (Big Endian) to a Double is 587746745.
If we take the date Jan 1st 2001 at 00:00:00 and add 587746745 seconds, we get to 17th August 2019 14:59:05 (UTC).

Strings (0x5?)

Strings are saved as one byte = one character. So once you know the number of characters in a string, you know the number of bytes required.

In the example above, we know that 5 is a string and F means we need the next two bytes in order to calculate the size.
Those two bytes are; 0x1020 which results in a decimal value of 32, meaning the string is 32 characters (ie 32 bytes). Those 32 bytes are 63 6F 6D >>> 61 67 65 which is represented in ASCII as "com.apple.international-Language".

The Marker is shown in dark blue whereas the value is shown in light blue.

Unicode Strings (0x6?)

Unicode strings are very similar to regular strings however they require 2 bytes for each character instead of one (this allows for special characters to be used outside of the standard ASCII set).
So where a string is identified as being 10 characters, we need to use the next 20 bytes.

For example, if you have the marker 0x6F1014, you know it is a Unicode string with 0x14 (decimal 20) characters. But because each character is 2 bytes, we need to take 40 bytes.

Data (0x4?)

Data is saved as a list of bytes. What you do with those bytes is up to you. Well, the software. For example, they may be an embedded Plist, an image or a key to something. Or literally anything else.

Arrays (0xA?)

Arrays are just lists of objects*. Arrays are handled in BPLists like mini BPLists embedded in the data.

*An object could be any data type. So within a list there may be a string, an integer and even another list.

Arrays are identified in the data the same way as all other object types; with a type marker (0xA) followed by the size of the array.

The above image shows the Marker highlighted in red. 0xAF 10 42 defines an Array (0xA) with 66 items (0x42). The 66 items are highlighted in orange. Notice that each of the 66 items are all consecutive?
1E, 1F, 20, 21, 22, 23 and so on. That is because these are all pointers back to the Offset Table which point back to the data area.

The above image shows how Offset object 29 (Cyan background) points to a Marker at offset 0x03A3 in the data table (Bordered in cyan) which then defines the Array (Red) and then lists all objects inside the array (Orange background).
It also shows how the first object in the array, 0x1E (Bordered in blue) points to object 30 in the Offset table 0x03E8 (Blue background) which then points to Offset 0x03E8 (Blue border/Red background) with a Marker that defines a string (Yellow background) which is the first item in the array.
The second item in the array (Green border) refers to index 0x1F (Green background) which has a value of 0x0406.Offset 0x0406 is not shown on this image but would be the resulting object.

Dictionaries (0xD?)

Dictionaries are basically the same as a list, except every item in the list is Key/Value pair.

*A Key/Value pair is a pair of objects where one is the object (aka the Value) and one is the objects name (aka the Key).
For example, you may have a Key of "Device Name" and a Value of "Ian's iPhone", or a Key of "TimeIntervalSince1970" and a value of 1535100284.

They are written in the BPList similarly to Arrays, where a list of pointers to the Offset Table are listed after the Dictionary's definition. The main difference is that because they are paired objects, each object in the Dictionary requires double the number of pointers (one for the Key and one for the Value). They are arranged with all Keys being consecutive, followed by all Values.

This image shows the dictionary definition in red, followed by 23 bytes (white) which make up the Keys and a further 23 bytes (green) which make up the Values. The bytes that make up both the Keys and Values are pointers back to he Offset Table.

When the pointer has the value 0x01 it is pointing to Object 1 in the Offset Table (Don't forget that the Offset Table is zero indexed).
When the pointer has the value 0x02 it is pointing to Object 2 in the Offset Table. And so on.

This image shows a line drawn between the Pointer object and the Offset Item it refers to.

The Object in the Offset Table then points us to the offset of the data area.

In the case of Offset Object 1, it has a value of 0x0039, so we must go to offset 0x39 to find the actual data. Offset item 2 has a value of 0x005C and so we go to offset 0x5C to find the actual data.

This image is split into 3 sections and shows the start of the file at the top and is repeated at the bottom. The file footer is shown in the middle. It demonstrates how the Objects in the Dictionary point to an Object in the Offset Table which in turn points back to and Offset in the Data area.

In the first instance (Object at offset 0x0B) it's value is 0x01 so we head to the object at index 1 in the Offset Table. There we find the value 0x0039 which we follow back to offset 0x0039in the Data area and has a Marker of 0x5F. When we workout the entire value for that Marker, we get the string "com.apple.international-Language" which is the first Key in the dictionary.
In the second instance, we have a pointer to Object 2 in the Offset table which points us to offset 0x005C where we find the string "FirstPurpleBuddyCompletion" which is our second key.

Once all Keys have been mapped, we then hit the Values, which are worked out in exactly the same way.

Putting it all together

This image is a really small BPList file, but it is perfect for showing everything on a single image.

Orange Outline = File Header
Blue Outline = Data Area
Green Outline = Offset Table (Separated into single bytes)
Mauve Outline = File Footer

The File Footer is separated into:

  • Red Background (6 Bytes) = Unused
  • Pink Background (1 Byte) = Size of Offset Items (0x01 = 1 Byte)
  • Blue Background (1 Byte) = Object Reference Size (0x01 = 1 Byte)
  • Orange Background (8 Bytes) = Number of objects in the Offset Table (0x00 00 00 00 00 00 00 05 = 5 Objects)
  • Green Background (8 Bytes) = Position of first Marker after Header (0x00 00 00 00 00 00 00 00 = Position 0)
  • Yellow Background (8 Bytes) = Offset of Offset Table (0x00 00 00 00 00 00 00 65 = Offset 0x65)

The first object in the Offset Table (Green Border/Yellow Background) points to 0x08 (Pink border/Green Background) with a value of 0xD2.
We know that D means Dictionary and 2 means there are only two objects.
We know that each Marker is a single byte and that dictionaries double up on objects because of Key/Value Pairs.
So we know we need the next 4 bytes which are bordered and separated in pink (Offsets 0x09, 0x0A, 0x0B and 0x0C). The first two bytes are the Keys (0x09 and 0x0A) and second two bytes are the Values (0x0B and 0x0C).

We start by going to 0x09 which has a value of 0x01. This is referencing item 1 in the Offset Table and there is a RED line between the two bytes. Item 1 of the offset table is 0x0D which is a reference to an offset in the data area of the file. So we go to offset 0x0D (follow the rest of the RED line) to find the value 0x5F.
We know that 5F is a string and how to work out the length of the string (0x10 13 = 19 Bytes) so we take those 19 bytes which I've highlighted in RED and convert them to ASCII to get the string "_DKDeviceIdentifier".

We then go to Key pointer number 2: 0x0A to find value 0x02 and follow the PURPLE line to the second Offset item, value 0x23. At offset 0x23 we find 0x5F which results in the string "_DKSiriCloudSync Enabled".

At this stage, we have identified both Keys in the dictionary, but none of the values. Effectively, we have:

<dict>  
  <key>_DKDeviceIdentifier</key>
  <key>_DKSiriCloudSync Enabled</key>
</dict>  

We then go to Value number one: 0x0B and follow the BLUE line to Offset item 3 which has a offset value of 0x3D to eventually get string value "18ABC6A8-4718-54B0-96AC-693BF18206E1"

Finally, Value number two: 0x0C to follow the GREEN line to Offset item 4 for value 0x64 to get the Boolean value TRUE.

Now we have identified the Values too, completing the file.

<dict>  
  <key>_DKDeviceIdentifier</key>
    <value>18ABC6A8-4718-54B0-96AC-693BF18206E1</value>
  <key>_DKSiriCloudSync Enabled</key>
    <value>TRUE</value>
</dict>  

Wrapping Up

The information above should be enough to help you manually break down a BPList (should you get the desire to) or to even write your own parser to do it for you. The complexity of the file may change but ultimately the way it is stored should remain consistent.

Thank you for reading. Hopefully you've learned something useful and it will help you in the future. Don't forget, you can download my own FREE PList Parser "Mushy" from the Software section of my site which will soon include a DLL that can be incorporated into your own tools.

Previous Article
"KnowledgeC (and Friends)"
Next Article
"SnapChat PList"
Search
Social