Download presentation
Presentation is loading. Please wait.
Published bySusana Mynatt Modified over 10 years ago
1
Volume Analysis
2
What is a volume? Carrier defines a volume: “… a collection of addressable sectors that an Operating System (OS) or application can use for data storage.” Sectors in a volume need not be consecutive on one drive, i.e., RAID systems They should give that impression though An example of a Volume with consecutive sectors is a single hard drive when you look at the entire drive as the volume. May be made up of smaller volumes. 2
3
Partitions A partition is a collection of consecutive sectors. A partition is also a volume, but a volume is not necessarily a partition. Partitions are used for: If a particular file system has a maximum size limit for its partition. Hibernation record keeping Backup partitions Different partitions for different operating systems or even different file systems. 3
4
Example 4 Figure 4.1, Carrier Partition 1Partition 2Partition 3 Hard Disk Volume C: VolumeD: VolumeE: Volume
5
Partition Tables StartEndType 099FAT 100249NTFS 300599NTFS 5 Figure 4.2, Carrier
6
Partitions in General Purpose of a partition system is to organize the layout of a volume. It is essential to know the starting and ending location of a partition. Book describes them like property lines. If you don’t know where they are, it is kind of difficult to decide whose land you are on. Partition system is dependent on the operating system and not the Hard Drive interface. SCSI or ATA/IDE does not matter. 6
7
UnixWindows Typical Windows vs. Unix 7 Volume 1 CD-ROM Volume 2 CD-ROM Volume 1 C: D: E: \Program Files\ \Windows\ /etc/ /mnt/cdrom/ /tmp/ /usr/ Figure 4.3, Carrier
8
Sector Addressing Physical Address Exactly where is it on the disk? Logical Disk Volume Address If there are multiple disks, where is it on the disk volume that you are on? Logical Partition Address What is its location relative to the start of the partition? 8
9
Sector Addressing 9 Partition 1 Starting Address: 0 Partition 2 Starting Address: 864 Physical Address: 100 Logical Disk Volume Address: 100 Logical Partition Volume Address: 100 Physical Address: 964 Logical Disk Volume Address: 964 Logical Partition Volume Address: 100 Physical Address: 569 Logical Disk Volume Address: 569 Logical Partition Volume Address: N/A Figure 4.5, Carrier
10
Volume Analysis Volume analysis starts with knowing where the partitions are, so the partition tables have to be located and analyzed to see the layout. Once you have the layout, determine where the partitions start and stop, and if there are any parts of the volume that are not in a partition. If there are merged volumes, you will need to access the data structures with the merging information to determine which volumes are merged. 10
11
Consistency Checking This step is used to determine where the partitions are relative to the other partitions. This allows the analyst to determine if there is potential evidence outside of the partitions. A series of sanity checks is used for this. 11
12
Sanity Checks Look to see if the last partition ends with the last sector of the volume. If it does not, you have this: 12 Partition 1Partition 2 Carrier, Fig. 4.6
13
Sanity Checks Next, check to see where the consecutive partitions end and begin: 13 Carrier, Fig. 4.6 Partition 1Partition 2 Partition 1Partition 2 Partition 1Partition 2 Partition 1 Partition 2
14
Extracting Partition Data dd can be used to extract exactly which sectors you want from a disk: dd if=disk1 of=part1 bs=512 skip=63 count=1928097 if – input file (original disk) of – output file (file to contain recovered partition) bs – block size (default is 512) skip – number of blocks of size bs to skip over at the beginning count – number of blocks to copy 14
15
DOS Partitions Most common style Master Boot Record Systems Contains boot code, partition table, and a signature value (1 st 446 bytes) Boot code contains boot instructions and points to the partition table. Partition Table 15
16
Data Structures Byte Range DescriptionEssenti al 0-445Boot CodeNo 446-461Partition Table Entry #1Yes 462-477Partition Table Entry #2Yes 478-493Partition Table Entry #3Yes 494-509Partition Table Entry #4Yes 510-511Signature Value (AA55)No 16 Carrier, Table 5.1
17
Data Structures for Partition Entries 17 Carrier, Table 5.2 Byte Range DescriptionEssenti al 0-0Bootable FlagNo 1-3Starting CHS AddressYes 4-4Partition Type (See Table 5.3)No 5-7Ending CHS AddressYes 8-11Starting LBA AddressYes 12-15Size in SectorsYes
18
Partition Table Four entries (4 partitions) Each entry has the following fields: Starting CHS address Ending CHS address Starting LBA address Number of sectors in partition Type of partition Flags 18
19
Partitions Primary Partitions Extended Partitions 19
20
Other Partition Systems Apple Partitions BSD Partitions Solaris Slices … 20
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.