<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" >

<channel><title><![CDATA[THE DFIR BLOG - Mac Forensics]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics]]></link><description><![CDATA[Mac Forensics]]></description><pubDate>Thu, 27 Nov 2025 13:05:24 -0800</pubDate><generator>Weebly</generator><item><title><![CDATA[The Modern World of Mac Forensics]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/the-modern-world-of-mac-forensics]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/the-modern-world-of-mac-forensics#comments]]></comments><pubDate>Sun, 05 May 2024 19:40:10 GMT</pubDate><category><![CDATA[mac forensics]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/the-modern-world-of-mac-forensics</guid><description><![CDATA[APFS - Apple File System  APFS uses a logical volume to create a synthesized disk containing additional virtual volumes. Apple uses the APFS File System. One File system across all the devices. APFS is designed to keep SSD and Flash Storage in mind.&nbsp;&#8203;HFS does not offer full disk encryption by default. FileVault was added later. Support 4 Billion Files. Time only in Seconds.&nbsp;APFS has built-in Encryption.&nbsp;Snapshot Support - allowing us to revert in time to Volume Shadow Cop.Ti [...] ]]></description><content:encoded><![CDATA[<h2 class="wsite-content-title">APFS - Apple File System</h2>  <div class="paragraph"><font color="#2a2a2a"><br /><span>APFS uses a logical volume to create a synthesized disk containing additional virtual volumes. Apple uses the APFS File System. One File system across all the devices. APFS is designed to keep SSD and Flash Storage in mind.&nbsp;</span></font><br /><font color="#2a2a2a"><span>&#8203;</span></font><br /><span><font color="#2a2a2a">HFS does not offer full disk encryption by default. FileVault was added later. Support 4 Billion Files. Time only in Seconds.&nbsp;</font></span><span><font color="#2a2a2a">APFS has built-in Encryption.&nbsp;</font></span><span><font color="#2a2a2a">Snapshot Support - allowing us to revert in time to Volume Shadow Cop.</font></span><span><font color="#2a2a2a">Time in Nano Seconds (9 Zeros) - 1 Second is 1 Billion Nano Seconds</font></span>.&nbsp;<font color="#2a2a2a"><span>Support 9 Quintillion Files&nbsp;</span></font><br /><span></span></div>  <h2 class="wsite-content-title">MacOS Kernel</h2>  <div class="paragraph"><font color="#2a2a2a">BSD and Mach microkernel are the heart of the MacOS. BSD Security policies and Mach access permission constitute the core foundation of the security in the MacOS and super critical in enforcing the local security.<br /><br />How does MacOS protects the Kernel of the MacOS?<br />"Code signing" protects the kernel. Apple won't allow anyone to access the kernel until the code is signed. Kext is not encouraged by Apple<br /><br />You should not get confused with the system extension. System Extensions operate in the User space only &amp; Kernel Extension will operate at the Kernel Level</font><br /></div>  <h2 class="wsite-content-title">User Permission</h2>  <div class="paragraph"><font color="#2a2a2a">MacOS uses Mandatory Access Control (MAC) policies that can't be overwritten and are not visible to users. MAC enables several key security features like Sandboxing, parental control, System Integrity Protection<br /></font></div>  <h2 class="wsite-content-title">Understanding APFS Disk Organization</h2>  <div><div class="wsite-image wsite-image-border-none " style="padding-top:10px;padding-bottom:10px;margin-left:0;margin-right:0;text-align:right"> <a> <img src="https://www.thedigitalforensics.com/uploads/4/7/0/5/47058929/screenshot-2024-05-05-at-12-45-44-pm_orig.png" alt="Picture" style="width:auto;max-width:100%" /> </a> <div style="display:block;font-size:90%"></div> </div></div>  <div class="paragraph"><strong>Run this command on a MacOS terminal to under the disk structure of an APFS System.<br /><font color="#8d2424">diskutil list</font></strong></div>  <div class="paragraph"><font color="#2a2a2a">Let's delve into the intricacies of this screenshot. It's a complex concept, but I'm here to guide you through it.<br /><br />You have one actual Physical Disk; see/dev/disk0. The Physical disk has a logical volume to make a synthesized disk, which is /dev/disk3.<br /><br />The synthesized disk creates a container scheme with virtualized volumes and multiple containers. When doing the forensic analysis, you look for the APFS Volumes Data Virtual Disk (5). You may want to combine the APFS Volume Data with the Snapshot Container, So Snapshot(2) + APFS Volume Data (5) makes your Macintosh HD.</font><br /><br /><font color="#8d2424">The Physical Disk (/dev/disk0) has containers, and containers (/dev/disk3) contain virtualized volumes. Data is stored in the volumes (Snapshot + Data).&nbsp;</font><br /><em><font color="#8d2424">Note: Most of the volumes are read-only except for data volume</font></em><br /><br /><font color="#2a2a2a"><strong>Signed System Volume: </strong>Apple has started producing signed system volumes, which means that whenever you download or update macOS, it will be connected to the Apple server via the Internet to verify the digital signature of the code.<br />&nbsp;<br />After verification, Apple Disk makes a snapshot (2) of itself, i.e., duplicating the APFS system volume (1) and creating a recovery volume and VM. So T<em>echnically, APFS-Data is the only volume you need to image (5)</em><br /><br /><strong>What about Deleted Files?</strong></font><br /><br /><font color="#2a2a2a">Apple has TRIM enabled on SSDs for performance optimization. TRIM's job is to tell the system to continuously wipe the memory cells in the SSD when a file is deleted. This increases the overall longevity of the SSD but makes a Forensics Technician's life harder. It's also an Instantaneous process&mdash;the moment the file is deleted, all the memory cells related to it are gone.&nbsp;</font><br /><br /><font color="#2a2a2a">People claim they can recover the data even if TRIM is turned on. Truly, they are getting the data out of the Local Time Machine Backup if it's enabled.</font><br /><br /><font color="#8d2424"><strong>Command</strong>:&nbsp;<span>tmutil listlocalsnapshots /<br /><br /><em>* Snapshots is also stored in the data partition (5) only. You can perform the differential analysis using the image and the snapshot data.&nbsp;</em></span></font><br /><br /></div>  <h2 class="wsite-content-title">FileVault - Apple Software Encryption</h2>  <div class="paragraph"><font color="#2a2a2a">FileVault is an Apple software encryption found in almost all MacOS versions, in addition to hardware encryption (Secure Enclaves). There are no backdoors to bypass FileVault.<br />Uses XTS-AES-128 for data encrytion.</font><br /><br /><em><font color="#8d5024">You'll need the admin password or recovery key to decrypt it.</font></em></div>  <h2 class="wsite-content-title">Secure Enclave - Apple Hardware Encryption (T2 Chips)</h2>  <div class="paragraph"><font color="#2a2a2a">T2 was scary. When it was launched, I remember talking to a colleague about the end of the MAC Forensics type of stuff. All the Data in Mac SSDs are encrypted at Rest.</font><br /><br /><font color="#2a2a2a">Secure Enclaves are built into the Apple silicon processors. </font><br /><em><font color="#8d5024">Admin password must be known to access the data.</font></em><br /><br /></div>  <h2 class="wsite-content-title">Image Acquisition</h2>  <h2 class="wsite-content-title">Logical Collection/Imaging</h2>  <div class="paragraph"><font color="#2a2a2a">Due to the changing world and increasing complexity, the Physical imaging of Macs is becoming less popular. Logical imaging is more prevalent, but it introduces complexities like changes in timestamps.</font><br /><br /></div>  <h2 class="wsite-content-title">Memory Collection</h2>  <div class="paragraph"><font color="#2a2a2a">chick out: &#8203;https://www.volexity.com/products-overview/surge/<br />They have signed kernel extension to image the Mac memory.</font></div>  <h2 class="wsite-content-title">System Integrity Protection</h2>  <div class="paragraph"><span style="color:rgb(42, 42, 42)">System Integrity Protection (SIP)</span><ul><li><span style="color:rgb(42, 42, 42)">Restricted root user actions to proejcts parts of OS like /System, /usr, /bin,/sbin, apps install with OSX</span></li><li><span style="color:rgb(42, 42, 42)">SIP Can be disabled if needed by Recovery Mode (CMD + R)</span></li><li><span style="color:rgb(42, 42, 42)">Open Terminal</span>:&nbsp;<span style="color:rgb(42, 42, 42)">csutil diable</span></li><li><span style="color:rgb(42, 42, 42)">Restart the machine</span></li><li><span style="color:rgb(42, 42, 42)">SIP Prevents user from Creating an image on Physical disk or APFS container while mac is running live.</span><span style="color:rgb(42, 42, 42)"></span></li><li><span style="color:rgb(42, 42, 42)">Note: if you disable SIP, make sure to document it.</span></li><span style="color:rgb(42, 42, 42)"></span></ul><br /></div>  <h2 class="wsite-content-title">Key MacOS Artifacts</h2>  <div id="689366722680827502"><div><style type="text/css">	#element-5e801fbc-9709-4cd7-a6a8-869236c03ab9 .content-color-box-wrapper {  padding: 20px;  border-radius: 0px;  background-color: #d5d5d5;  border-style: None;  border-color: #555555;  border-width: 3px;}</style><div id="element-5e801fbc-9709-4cd7-a6a8-869236c03ab9" data-platform-element-id="698263678581730663-1.1.0" class="platform-element-contents"><div class="content-color-box-wrapper"><div style="width: 100%"><div></div><div class="paragraph"><font color="#2a2a2a">User Data (grab the profile)<br />/Users/%username&amp;/*<br /><br />Web Browser Activity<br />/Chrome/Safari/Opera/Firefox<br />/Users/&lt;username&gt;/Library/*<br /><br />iOS Backup<br />/Users/&lt;username&gt;/Library/ Application Suppport/MobileSync<br /><br />iMessage<br />/Users/&lt;username&gt;/Library/Application Support/&nbsp;<br /><br />Airdrop<br />iCloud Backup<br />/Users/&lt;username&gt;/Library/iCloud<br /><br />Unified Logs&nbsp;<br />/private/var/db/diagnostics<br /><br />Lockdown Folder ()<br />/private/var/db/lockdown<br /><br />QuarantineFiles-users/username/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV2<br /><br /><br />Bash History<br />/Users/&lt;username&gt;/.bash_sessions<br />/users/&lt;username&gt;/.bash_history<br /><br />Spotlight Shortcuts<br />/Users/&lt;username&gt;/Library/Application Support/ com.apple.spotlight.Shortcuts<br />&nbsp;<br /><br />Daily.out - which are&nbsp; the things getting into the machines<br />/private/var/log/daily.out<br /><br />Finder MRU<br />/Users/username/Library/Preferences/com.apple.finder.plist<br /><br />App Store downloads<br />/Library/Receipts/installHistory/plist</font><br /><br /><strong><span style="color:rgb(42, 42, 42)">FSEvents (Running list of things going on the machine)</span></strong><br /><span style="color:rgb(42, 42, 42)">/.fseventsd(folder)</span><ul><li><span style="color:rgb(42, 42, 42)">Think of FSEvents as a <strong>$UsnJrnl</strong> in NTFS System.&nbsp;</span></li><li><span style="color:rgb(42, 42, 42)">Record events/changes made to the file system</span></li><li><span style="color:rgb(42, 42, 42)">Found on the system partition<strong> /.fseventsd</strong></span></li><li><span style="color:rgb(42, 42, 42)">Expect many logs, packages into gzip archive files</span></li><li><span style="color:rgb(42, 42, 42)">File IDs are present, which is great for sequencing files and events. Helpful for the timeline</span></li><li><span style="color:rgb(42, 42, 42)">You need a file system-level image for the .fsevents.</span></li><li><span style="color:rgb(42, 42, 42)">In FSeventd, you might want to look or Volume, Safari/chrome, trash</span></li><li><span style="color:rgb(42, 42, 42)">Flags are imp to review when analyzing fsevents logs. If the file is moved to the trash folder, the system will flag it as renamed. Use your best judgment with the combination of flags, filepath, and filename data.</span></li></ul><br /><font color="#2a2a2a"><strong>User Account</strong></font><ul><li><font color="#2a2a2a">Private/var/db/local/nodes/defaults/user/&lt;user&gt;.plist</font></li><li><font color="#2a2a2a">This will contain Name, Profile name, password hint, an account image, UID</font></li><li><font color="#2a2a2a">Login History&nbsp;</font></li><li><font color="#2a2a2a">private/var/log/acl</font></li><li><font color="#2a2a2a">BB.date.acl - Best Before</font></li><li><font color="#2a2a2a">Provide login and Logout history to the users</font></li><li><font color="#2a2a2a">You can grab a different volume of Mac Data because Recovery Partition is not filevault2 protected. You might get the password hint or username from there.</font></li></ul><br /><font color="#2a2a2a"><strong>Quarantined Files</strong></font><ul><li><font color="#2a2a2a">QuarantineEventV2.DB (SQLite)</font></li><li><font color="#2a2a2a">Quarantine Events alert uses that the file they are about to open was downloaded from the internet and asking explicit permission before opening</font></li><li><font color="#2a2a2a">Quarantine-aware applications are Safari, Messages, iChat, Mail</font></li><li><font color="#2a2a2a">Attribute include Date, time, where it's downloaded from&nbsp;\users\&lt;user&gt;\Library\Preferenes\com.apple.LaunchServices.QuarantineEventsV2</font></li><li><font color="#2a2a2a">Also detects known instances of malware</font></li></ul><br /><font color="#2a2a2a"><strong>USB Forensics&nbsp;</strong></font><ul><li><font color="#2a2a2a">\private\var\db\diagnostics\persist\******.tracev3 ) (Binary Log Files)</font></li><li><font color="#2a2a2a">Connect Start Time</font></li><li><font color="#2a2a2a">Serial Number (Serial Number is generally is not Unique for Thumb Drives)</font></li><li><font color="#2a2a2a">Vendor ID</font></li><li><font color="#2a2a2a">Product ID</font></li><li><font color="#2a2a2a">Var/log/System.log file&nbsp;</font></li><li><font color="#2a2a2a">Use USB MSC as a search term</font></li><li><font color="#2a2a2a">Other places to look for USB data are events for mounting info daily.out file and Unified logs with the keyword USBMSC or "Manufacturer"</font></li></ul><br /><font color="#2a2a2a"><strong>Extended attribute: Xattr -xl &lt;filename&gt;</strong><br />kMDItemwherefroms<br />mdls &lt;filename&gt;<br /><br /><strong>Installed Application</strong><br />/Library/Receipt/Installhistory.plist<br /><br /><strong>Network Usage</strong><br />/private/var/networkd/netusage.sqlite<br /><br /><strong>File and Folder Access</strong><ul><li>Recently Used Items and Finder MRU</li><li>com.apple.finder.plist</li><li>recently used items artifacts</li><li>File name of the application</li><li>File opened</li><li>File path said artifacts</li></ul><br /><strong>Trash</strong><br />.Trash is a hidden folder for each user<br />.ds_store will give the information about<br /><br /><strong>&#8203;Local Snapshots:</strong><br />&#8203;Command: tmutil listlocalsnapshots /</font></div></div></div></div><div style="clear:both;"></div></div></div>  <h2 class="wsite-content-title">Key Commands</h2>  <div class="paragraph">Timestamps that Mac uses are stored in extended Attributes. There are a couple of ways to look at them. MDLS is probably the most forensic timestamp on a file. However, it's important to note that many tools get the data from the Stat command, which can potentially lead to an incorrect timestamp.<br /><font color="#8d2424">mdls &lt;filename&gt;</font><br />View Timestamp of a File&nbsp;<br /><font color="#8d2424">stat -x &lt;filename&gt;<br /><br />Note: Tools are just excellent; they simplify your investigation process but can make mistake also. A good tip from a fellow Forensicator is to ALWAYS Verify from TWO Souces before adding it to your report. If a tool shows you a MACB time for a file - Always Verify it with the extended attribute (MDLS) data.</font></div>  <h2 class="wsite-content-title">MacOs Security Incident Response Key Artifacts</h2>  <div class="paragraph">At midnight, you receive a page from a user who believes their Mac is compromised. How do you quickly triage the endpoint and determine whether it's a True Positive or False Positive?<br />Note: Not going into the whole lifecycle on the IR Process. Starting off directly with collections.<br /><br /><strong>What should you look for if it's a Mac malware?</strong><br />The majority of the MacOs malware will persist in 3 ways (although there are other ways too):<br />1) Launch Agents (<br />2) Launch Deamons (<span style="color:rgb(0, 0, 0)">/System/Library/LaunchDaemons)</span><br />3) Login Items (<span style="color:rgb(0, 0, 0)">/System/Library/LaunchAgents)</span><br /><br />This is a great way to start your investigation if you want a Mac Malware.</div>]]></content:encoded></item><item><title><![CDATA[macOs Autoruns?]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/macos-autoruns]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/macos-autoruns#comments]]></comments><pubDate>Sun, 21 Jul 2019 06:06:08 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/macos-autoruns</guid><description><![CDATA[.Super Cool Investigative information for a Malware type investigations. This is one of the way modern malware maintains persistence in the system across shutdowns and reboots.LaunchAgentsUser Level and contains background user process/System/Library/LaunchAgents/Library/LaunchAgents~/Library/LaunchAgentsLaunchDaemons&nbsp;Background System Process for MacOs/System/Library/LaunchDaemons/Library/LaunchDeamonsStartupItemsLoginItems - ~/Library/Preferencescom.apple.loginitems.plist [...] ]]></description><content:encoded><![CDATA[<div class="paragraph"><span style="color:rgb(119, 119, 119)">.Super Cool Investigative information for a Malware type investigations. This is one of the way modern malware maintains persistence in the system across shutdowns and reboots.</span><ul style="color:rgb(119, 119, 119)"><li>LaunchAgents<ul><li>User Level and contains background user process</li><li>/System/Library/LaunchAgents</li><li>/Library/LaunchAgents</li><li>~/Library/LaunchAgents</li></ul></li><li>LaunchDaemons&nbsp;<ul><li>Background System Process for MacOs</li><li>/System/Library/LaunchDaemons</li><li>/Library/LaunchDeamons</li></ul></li><li>StartupItems</li><li>LoginItems - ~/Library/Preferencescom.apple.loginitems.plist</li></ul></div>]]></content:encoded></item><item><title><![CDATA[How to mount an APFS Image?]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/how-to-mount-an-apfs-image]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/how-to-mount-an-apfs-image#comments]]></comments><pubDate>Sun, 21 Jul 2019 06:03:15 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/how-to-mount-an-apfs-image</guid><description><![CDATA[Step -1sudo mkdir /Volumes/apfs_disk_image/Step -2sudo mkdir /Volumes/apfs_disk_mount/Step -3sudo xmount --in ewf --out dmg /Users/&lt;Username&gt;/APFS/apfs_disk.E01 /Volumes/apfs_disk_image/ &nbsp;Step-4hdiutil attach -nomount /Volumen/apfs_disk_image/apfs_disk.dmgStep-5&nbsp;diskutil ap listStep -6 (Optional)In case of encryption use this:&nbsp;diskutil ap unlockVolume &lt;Disk Guid&gt; -nomountStep-7sudo mount_apfs&nbsp; -o rdonly,noexec,noowners /dev/disk#/Volumes/apfs_disk_mount/ [...] ]]></description><content:encoded><![CDATA[<div class="paragraph"><span style="color:rgb(119, 119, 119)">Step -1</span><br /><span style="color:rgb(119, 119, 119)">sudo mkdir /Volumes/apfs_disk_image/</span><br /><span style="color:rgb(119, 119, 119)">Step -2</span><br /><span style="color:rgb(119, 119, 119)">sudo mkdir /Volumes/apfs_disk_mount/</span><br /><span style="color:rgb(119, 119, 119)">Step -3</span><br /><span style="color:rgb(119, 119, 119)">sudo xmount --in ewf --out dmg /Users/&lt;Username&gt;/APFS/apfs_disk.E01 /Volumes/apfs_disk_image/ &nbsp;</span><br /><span style="color:rgb(119, 119, 119)">Step-4</span><br /><span style="color:rgb(119, 119, 119)">hdiutil attach -nomount /Volumen/apfs_disk_image/apfs_disk.dmg</span><br /><span style="color:rgb(119, 119, 119)">Step-5&nbsp;</span><br /><span style="color:rgb(119, 119, 119)">diskutil ap list</span><br /><span style="color:rgb(119, 119, 119)">Step -6 (Optional)In case of encryption use this:&nbsp;</span><br /><span style="color:rgb(119, 119, 119)">diskutil ap unlockVolume &lt;Disk Guid&gt; -nomount</span><br /><span style="color:rgb(119, 119, 119)">Step-7</span><br /><span style="color:rgb(119, 119, 119)">sudo mount_apfs&nbsp; -o rdonly,noexec,noowners /dev/disk#/Volumes/apfs_disk_mount/</span></div>]]></content:encoded></item><item><title><![CDATA[What's 'Installed' on your Mac?]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/whats-installed-on-your-mac]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/whats-installed-on-your-mac#comments]]></comments><pubDate>Sun, 21 Jul 2019 06:00:50 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/whats-installed-on-your-mac</guid><description><![CDATA[Install.log file has an immense value to see all the installations on you Mac.&nbsp;Use this command on your terminal to get the list:&nbsp;&#8203;grep 'Installed' /private/var/log/install.logThis log file has an immense forensic value to identify the user installation activity. Questions like remotely installed applications, failed installation can be answered by analyzing the &nbsp;'Install.log' file.cat /private/var/log/install.log  	#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor- [...] ]]></description><content:encoded><![CDATA[<div class="paragraph"><span style="color:rgb(119, 119, 119)">Install.log file has an immense value to see all the installations on you Mac.&nbsp;</span><br /><span style="color:rgb(119, 119, 119)">Use this command on your terminal to get the list:&nbsp;<br />&#8203;</span><br /><font color="#8d2424">grep 'Installed' /private/var/log/install.log</font><br /><span style="color:rgb(119, 119, 119)">This log file has an immense forensic value to identify the user installation activity. Questions like remotely installed applications, failed installation can be answered by analyzing the &nbsp;'Install.log' file.</span><br /><font color="#8d2424">cat /private/var/log/install.log</font></div>  <div id="933216905815425978"><div><style type="text/css">	#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--light {  padding: 20px 0px;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--light .header {  padding: 10px 20px;  font-weight: bold;  border-left: 1px solid #C9CDCF;  border-right: 1px solid #C9CDCF;  border-top: 1px solid #C9CDCF;  background-color: #F8F8F8;  color: #363B3E;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--light .header .paragraph {  margin: 0;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--light .body-code {  margin: 0;  border: 1px solid #C9CDCF;  background-color: #FFFFFF;  color: #666C70;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--dark {  padding: 20px 0px;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--dark .ace-tomorrow-night-eighties {  background-color: #363B3E;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--dark .header {  padding: 10px 20px;  font-weight: bold;  border-left: 1px solid #E0E1E2;  border-right: 1px solid #E0E1E2;  border-top: 1px solid #E0E1E2;  background-color: #666C70;  color: #FFFFFF;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--dark .header .paragraph {  margin: 0;}#element-16b747be-efab-42d3-a4d6-2e7bb2feadf9 .code-editor--dark .body-code {  margin: 0;  border: 1px solid #E0E1E2;  background-color: #363B3E;  color: #F8F8F8;}</style><div id="element-16b747be-efab-42d3-a4d6-2e7bb2feadf9" data-platform-element-id="270170748587580171-1.3.3" class="platform-element-contents">	<div class="code-editor--dark">    <div class="header">        <div class="paragraph"></div>    </div>    <div class="body-code">        <pre class="editor"></pre>    </div></div></div><div style="clear:both;"></div></div></div>]]></content:encoded></item><item><title><![CDATA[MacOs Keychain Analysis]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/macos-keychain-analysis]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/macos-keychain-analysis#comments]]></comments><pubDate>Sat, 07 Apr 2018 02:32:05 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/macos-keychain-analysis</guid><description><![CDATA[MacOs Key Chain AnalysisLocation: ~Library/KeychainsFile of interest:&nbsp;keychain-2.dbData in Login &amp; System Keychain can be very useful in an investigation.Once you copy the keychain-db file - you can use keychain native app to view the content.&#8203; [...] ]]></description><content:encoded><![CDATA[<div class="paragraph">MacOs Key Chain Analysis<br />Location: ~<span style="color: rgb(131, 148, 150); background-color: transparent;">Library/Keychains<br />File of interest:&nbsp;</span><span style="color: rgb(131, 148, 150); background-color: transparent;">keychain-2.db</span><span style="color: rgb(131, 148, 150); background-color: transparent;"><br /></span>Data in <u>Login &amp; System Keychain</u> can be very useful in an investigation.<br />Once you copy the keychain-db file - you can use <u>keychain native app</u> to view the content.<br />&#8203;</div>]]></content:encoded></item><item><title><![CDATA[Which plist store auto login items data?]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/which-plist-store-auto-login-items-data]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/which-plist-store-auto-login-items-data#comments]]></comments><pubDate>Fri, 06 Apr 2018 03:56:33 GMT</pubDate><category><![CDATA[plist]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/which-plist-store-auto-login-items-data</guid><description><![CDATA[$ cd /Users/&lt;Username&gt;/Library/Preferences$ open -a xcode com.apple.loginitems.plistYou can use any hex&nbsp;editor to read&nbsp;the hex data. Hex will give you the location of&nbsp;the&nbsp;file path of the login item.        [...] ]]></description><content:encoded><![CDATA[<div class="paragraph"><span>$ cd /Users/&lt;Username&gt;/Library/Preferences</span><br /><span>$ open -a xcode com.apple.loginitems.plist<br />You can use any hex&nbsp;editor to read&nbsp;the hex data. Hex will give you the location of&nbsp;the&nbsp;file path of the login item.</span></div>  <div><div class="wsite-image wsite-image-border-none " style="padding-top:10px;padding-bottom:10px;margin-left:0;margin-right:0;text-align:center"> <a> <img src="https://www.thedigitalforensics.com/uploads/4/7/0/5/47058929/screenshot-2018-04-05-23-57-18_orig.png" alt="Picture" style="width:auto;max-width:100%" /> </a> <div style="display:block;font-size:90%"></div> </div></div>]]></content:encoded></item><item><title><![CDATA[MacOs Investigation Tracker]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/macos-investigation-tracker]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/macos-investigation-tracker#comments]]></comments><pubDate>Fri, 06 Apr 2018 03:13:01 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/macos-investigation-tracker</guid><description><![CDATA[&#8203;https://docs.google.com/spreadsheets/d/1t6swpG1kN_8ZP6BX3CkEeOyUmsAv86pqU5yEvwIdAP0/edit?usp=sharing [...] ]]></description><content:encoded><![CDATA[<div class="paragraph">&#8203;https://docs.google.com/spreadsheets/d/1t6swpG1kN_8ZP6BX3CkEeOyUmsAv86pqU5yEvwIdAP0/edit?usp=sharing</div>]]></content:encoded></item><item><title><![CDATA[List of Application in Mac Dock]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/list-of-application-in-mac-dock]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/list-of-application-in-mac-dock#comments]]></comments><pubDate>Fri, 06 Apr 2018 00:09:52 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/list-of-application-in-mac-dock</guid><description><![CDATA[open -a xcode ~/Library/Preferences/com.apple.dock.plist        [...] ]]></description><content:encoded><![CDATA[<div class="paragraph"><span>open -a xcode ~/Library/Preferences/com.apple.dock.plist</span><br /><span></span></div>  <div><div class="wsite-image wsite-image-border-none " style="padding-top:10px;padding-bottom:10px;margin-left:0;margin-right:0;text-align:center"> <a> <img src="https://www.thedigitalforensics.com/uploads/4/7/0/5/47058929/screenshot-2018-04-05-20-11-46_orig.png" alt="Picture" style="width:auto;max-width:100%" /> </a> <div style="display:block;font-size:90%"></div> </div></div>]]></content:encoded></item><item><title><![CDATA[Mac Keyboard Dynamic Text]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/mac-keyboard-dynamic-text]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/mac-keyboard-dynamic-text#comments]]></comments><pubDate>Thu, 05 Apr 2018 23:51:37 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/mac-keyboard-dynamic-text</guid><description><![CDATA[Location:&nbsp;/Users/&lt;username&gt;/Library/KeyboardServices/TextReplacements.dbThe data from this DB can be very handy in investigation ot get access to the suspects' machine. [...] ]]></description><content:encoded><![CDATA[<div class="paragraph">Location:&nbsp;<span>/Users/&lt;username&gt;/Library/KeyboardServices/TextReplacements.db<br /></span><br />The data from this DB can be very handy in investigation ot get access to the suspects' machine.<br /><span></span></div>]]></content:encoded></item><item><title><![CDATA[Application Launched at the System Boot]]></title><link><![CDATA[https://www.thedigitalforensics.com/mac-forensics/application-launched-at-the-system-boot]]></link><comments><![CDATA[https://www.thedigitalforensics.com/mac-forensics/application-launched-at-the-system-boot#comments]]></comments><pubDate>Thu, 05 Apr 2018 23:43:08 GMT</pubDate><category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">https://www.thedigitalforensics.com/mac-forensics/application-launched-at-the-system-boot</guid><description><![CDATA[Following plist hold the information of the application that get start at the system boot:open -a xcode&nbsp; ~/Library/Preferences/com.apple.loginitems.plist [...] ]]></description><content:encoded><![CDATA[<div class="paragraph">Following plist hold the information of the application that get start at the system boot:<br /><br /><span>open -a xcode&nbsp; ~/Library/Preferences/com.apple.loginitems.plist</span><br /><span></span><br /></div>]]></content:encoded></item></channel></rss>