Master Boot Record
Master Boot Record
The Master Boot Record (MBR) is located at the physical beginning of hard drive (Head 0
Cylinder 0 Sector 1), editable using the Hex editor. It consists of a master bootstrap loader
code (446 bytes) and four subsequent, identically structure partition records. Finally, the
hexadecimal signature 55AA completes a valid MBR.
Address Content
0000H-00D9H Master bootstrap loader
00DAH-01BDH Reserved
01BEH-01CDH Partition 1
01CEH-01DDH Partition 2
01DEH-01EDH Partition 3
01EEH-01FDH Partition 4
01FEH-01FFH 55AAH
1
Master Boot Record
2
Master Boot Record
For example: There’re 2 Primary NTFS partitions and the second one is active. Also, there
are seven Extended partitions and the fifth one is NTFS while the others are FAT32. The
MBR of this drive will be shown as:
3
Master Boot Record
Analysis of MBR
Master bootstrap loader code 33 C0 8E D0 BC 00 7C FB …
01BEH-01CDH is the partition record of
Partition 1. This is not an active
partition. It starts from Head 1 Cylinder
70 Sector 1. The OS is HPFS,
Windows NT NTFS, Advanced UNIX.
4
Master Boot Record
th
The 4 partition record is empty.
The content of the Extended Partition Table at the address of Head 0 Cylinder 435 Sector 1
is shown below, where the structure is the same as Main Partition Table in MBR.
5
Master Boot Record
There will be another 6 Extended Partition Tables which have the same structures as the
one shown above.