Search K
Appearance
Appearance
Other ways to support HackTricks:
Apple File System (APFS) is a modern file system designed to supersede the Hierarchical File System Plus (HFS+). Its development was driven by the need for improved performance, security, and efficiency.
Some notable features of APFS include:
Overall, APFS offers a more modern, flexible, and efficient file system for Apple devices, with a focus on improved performance, reliability, and security.
diskutil list # Get overview of the APFS volumes
The Data
volume is mounted in /System/Volumes/Data
(you can check this with diskutil apfs list
).
The list of firmlinks can be found in the /usr/share/firmlinks
file.
cat /usr/share/firmlinks
/AppleInternal AppleInternal
/Applications Applications
/Library Library
[...]
On the left, there is the directory path on the System volume, and on the right, the directory path where it maps on the Data volume. So, /library
--> /system/Volumes/data/library
Other ways to support HackTricks: