Forensicswiki.org has moved to this site, forensicswiki.xyz. For information, please join the Google Group forensicswiki-reborn
Mac OS X
|
Please help to improve this article by expanding it.
|
Apple Inc.'s Macintosh OS X (pronounced "OS Ten") is the operating system distributed with Apple computers. It includes heavily used several programs by default, including Apple Mail, a web browser called Safari, and an Apple Address Book, and iCal.
Contents
- 1 EFI boot
- 2 Disk image types
- 3 Burn Folder
- 4 HFS/HFS+ date and time values
- 5 Launch Agents
- 6 Launch Daemons
- 7 Startup Items
- 8 Crash Reporter
- 9 Diagnostic Reports
- 10 Internet Plug-Ins
- 11 Quarantine event database
- 12 sleepimage
- 13 Last shutdown logs
- 14 Package Files (.PKG)
- 15 Also see
- 16 External Links
EFI boot
The firmware is responsible for initializing the hardware and performing a POST (Power-On Self Test).
The default boot volume is stored in NVRAM and can be configured through the "Startup Disk" preference pane or the nvram command line utility [1]. E.g. to print all of the firmware variables.
nvram -p
Additional boot arguments can be provided via the "boot-args" value [2].
Mac OS X extends EFI with a read-only HFS+ driver. According to [3] HFS+ volume header fields are used to point to a "blessed file" to be loaded as an EFI application. Though it is not clear which header field the source is referring to but likely related to the "bless" utility [4].
The firmware starts the Mac OS X boot loader (boot.efi). The bootloader displays a dark grey Apple logo on the screen and loads the Darwin kernel from disk, as well as the essential driver extensions.
The bootloader can be eithe a MZ-PE/COFF or EFI fat binary type executables and is commonly stored in:
/com.apple.recovery.boot/boot.efi /System/Library/CoreServices/boot.efi /usr/standalone/i386/boot.efi
The behavior of the bootloader can be configured in the com.apple.Boot.plist [5] which can be found in:
/Library/Preferences/SystemConfiguration/
Disk image types
Mac OS X has support for various disk image types build-in, some of which are:
- read-write disk image (.dmg) some of which use the Raw Image Format
- Sparse disk image (.spareimage)
- Sparse bundle disk image (.sparsebundle)
Burn Folder
Mac OS X Burn Folder:
$NAME.fpbf
This folder normally contains alias files (similar to LNK files under Windows). Which should have the following signature.
00000000 62 6f 6f 6b 00 00 00 00 6d 61 72 6b 00 00 00 00 |book....mark....|
These alias files contain additional date and time values.
Also check the following files for references to deleted .fpbf paths:
/Users/$USERNAME/Library/Preferences/com.apple.finder.plist /Users/$USERNAME/Library/Preferences/com.apple.sidebarlists.plist
Actual burning of optical media is logged in:
/var/log/system.log /Users/$USERNAME/Library/Logs/DiscRecording.log /private/var/.logs_exporter/cache/Users/$USERNAME/Library/Logs/DiscRecording.log
HFS/HFS+ date and time values
In HFS+ date and time values are stored in an unsigned 32-bit integer containing the number of seconds since January 1, 1904 at 00:00:00 (midnight) UTC (GMT). This is slightly different from HFS where the date and time value are stored using the local time. The maximum representable date is February 6, 2040 at 06:28:15 UTC (GMT). The date values do not account for leap seconds. They do include a leap day in every year that is evenly divisible by four. This is sufficient given that the range of representable dates does not contain 1900 or 2100, neither of which have leap days. Also see: Technical Note TN1150 - HFS Plus Volume Format
Converting HFS/HFS+ date and time values with Python:
import datetime print datetime.datetime( 1904, 1, 1 ) + datetime.timedelta( seconds=0xCBDAF25B )
Launch Agents
System-wide:
/Library/LaunchAgents /System/Library/LaunchAgents
Per user:
/Users/$USERNAME/Library/LaunchAgents
These directories contain Property list (plist) files.
Launch Daemons
System-wide:
/Library/LaunchDaemons /System/Library/LaunchDaemons
These directories contain Property list (plist) files.
Startup Items
/Library/StartupItems/ /System/Library/StartupItems/
Crash Reporter
/Library/Application Support/CrashReporter
Contains text files named .crash, .diag, .spin
Diagnostic Reports
/Library/Logs/DiagnosticReports
Internet Plug-Ins
System-wide:
/Library/Internet Plug-Ins
Per user:
/Users/$USERNAME/Library/Internet Plug-Ins
Quarantine event database
See [6]
Snow Leopard and earlier
/Users/$USER/Library/Preferences/com.apple.LaunchServices.QuarantineEvents
SELECT datetime(LSQuarantineTimeStamp + 978307200, "unixepoch") as LSQuarantineTimeStamp, LSQuarantineAgentName, LSQuarantineOriginURLString, LSQuarantineDataURLString from LSQuarantineEvent;
Lion and later
/Users/$USER/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV2
sleepimage
This file is similar to the hibernation file on Windows.
/private/var/vm/sleepimage
Also see: [7]
Last shutdown logs
/private/var/log/com.apple.launchd/launchd-shutdown.system.log /private/var/log/com.apple.launchd/launchd-shutdown.system.log.1
Package Files (.PKG)
Package Files (.PKG) are XAR archives [8] that contain a cpio archive and metadata [9].
Also see
- MacOS Process Monitoring
- Acquiring a MacOS System with Target Disk Mode
- Converting Binary Plists
- FileVault Disk Encryption
- File Vault
Formats
External Links
- Official website
- Wikipedia entry on OS X
- What is Mac OS X?, by Amit Singh, 1994
- Mac OS X Directory Services Integration including Active Directory
- NSKeyedArchiver files – what are they, and how can I use them?
- Command Line ALF on Mac OS X
- mac-security-tips
- Mac OS X Forensics, by Joaquin Moreno Garijo, March 4, 2015
- Hidden backdoor API to root privileges in Apple OS X, by Emil Kvarnhammar, April 9, 2015
- Max OS X Internals book (1st ed) by Jonathan Levin PDF download
Alias
- Reversing Mac Alias v3 Data Objects, by Patrick Olsen, August 15, 2016
Apple Examiner
- The Apple Examiner
- USB Entries on OS X
- Macintosh Forensics - A Guide for the Forensically Sound Examination of a Macintosh Computer by Ryan R. Kubasiak
EFI
- The Intel Mac boot process, by the rEFIt project
- Carving up EFI fat binaries, by snare, February 24, 2012
iCloud
ColorSync
- Technical Note TN2035 - ColorSync on Mac OS X
- Internet Archive: Managing Color With ColorSync
- ICC.1:2004-10 - Image technology colour management - Architecture, profile format, and data structure, by International Color Consortium (ICC)
- ICC Profile Format Specification, by International Color Consortium (ICC), November 20, 1995
- ICC profiles
- ICC_Profile Tags
- Adobe XMP Developer Center
DMG
HFS
- Mac Forensics: Mac OS X and the HFS+ File System by P. Craiger
Quarantine event database
Unified logging
- New macOS Sierra (10.12) Forensic Artifacts – Introducing Unified Logging, by Sarah Edwards, November 13, 2016
- Accessing Unified Logs From an Image, by BlackBag Technologies, Inc., Sepember 22, 2017
Yet Another Assembler (YAA)
- YAA: An Obscure MacOS Compressed File Format, by nightwatchcyber, June 14, 2020