Escaping Parallels Desktop with Plist Injection

渗透技巧 11个月前 admin
233 0 0

This post details two bugs I found, a plist injection (CVE-2023-27328) and a race condition (CVE-2023-27327), which could be used to escape from a guest Parallels Desktop virtual machine. In this post I’ll break down the findings.

For anyone not familiar, Parallels Desktop offers virtualization on macOS. It allows you to run virtual machines, like Windows or Linux, on a macOS host.

Toolgate & Parallels Tools

Toolgate is the protocol used for communication between the guest and host in Parallels, and it’s a great place to start looking for bugs due to its large attack surface and relatively immature security posture.

On x86 guests (which I’ll be using as an example for this blog post) Toolgate requests are sent to the host from the guest by writing the physical address of a struct to a specific I/O port.TG_REQUEST

A request structure consists of an opcode (), a status field () which is updated by the host to indicate the status of a request, optional inline data (if > 0), and an optional list of structs (if > 0).RequestStatusInlineByteCountTG_BUFFERBufferCount

typedef struct _TG_REQUEST {
  unsigned Request;               // opcode
  unsigned Status;                // request status
  unsigned short InlineByteCount; // number of inline bytes
  unsigned short BufferCount;     // number of buffers
  unsigned Reserved;              // reserved
  /* [ inline bytes ] */
  /* [  TG_BUFFERs  ] */
} TG_REQUEST;

Parallels Tools is software which can be installed in a guest (similar to VirtualBox Guest Additions, or VMWare Tools) which adds various useful features, such as shared folders, shared clipboard, and drag-and-drop in/out of the VM.

Parallels Tools also adds a channel for userland processes to make Toolgate requests. On Linux this is a proc entry created at , which is created and managed by the kernel module, and on Windows this is a named pipe at . Parallels Tools also contains various userland processes and services which use this channel to facilitate these useful features./proc/driver/prl_tgprl_tg\\.\pipe\parallels_tools_pipe

Importantly there is a restriction on what Toolgate messages userland processes can send to the host using the channel created by Parallels Tools, which is enforced by the kernel module. Specifically, the opcode (aka the field) must be greater than the value of , which is defined as , otherwise the write to the proc entry will fail with . We can see the code for this here:prl_tgRequestTG_REQUEST_SECURED_MAX0x7fffEINVAL

	/* read request header from userspace */
	if (copy_from_user(src, ureq, sizeof(TG_REQUEST)))
		return -EFAULT;

	/*
	 * requests up to TG_REQUEST_SECURED_MAX are for drivers only and are
	 * denied by guest driver if come from user space to maintain guest
	 * kernel integrity (prevent malicious code from sending FS requests)
	 * dynamically assigned requests start from TG_REQUEST_MIN_DYNAMIC
	 */
	if (src->Request <= TG_REQUEST_SECURED_MAX)
		return -EINVAL;

As suggested by the comment, the only Toolgate opcodes which are less than this threshold are those which handle filesystem operations. This means that if we want to send filesystem-related Toolgate requests, we have to bypass this check. More on this later.

Shared Applications

Shared Applications is a Parallels feature which allows opening files on a Mac in a guest application, and vice versa. It also allows associating file extensions and URL schemes with guest applications. You can read more about this in the documentation.

This feature includes the display of an application’s icon in the Mac dock when it’s launched within a guest. Here’s an example of what it looks like when Microsoft Edge is opened in a Windows guest. We can see that the Edge icon shows up in the dock: Escaping Parallels Desktop with Plist Injection

Parallels handles the “syncing” of running guest apps to the host by monitoring for new applications launched in the guest, and then sending Toolgate requests to the host when a new application has started. The host handles these messages by creating and starting “helper” apps, which have the same name and icon as the app in the guest. These helper apps are then displayed in the Mac dock when they are running, and can be used to launch the respective application in the guest from the dock or Launchpad when they are not running.

This syncing process effectively works like this:

  1. Parallels Tools detects an application is launched in the guest
  2. It sends a Toolgate request (, opcode ) to the host notifying it that an application has launched with a given name and iconTG_REQUEST_FAVRUNAPPS0x8302
  3. If a helper app already exists for this guest app, then that helper app is launched and we’re done
  4. If the helper app doesn’t exist, a new app bundle is created in ~/Applications (Parallels)/<vm_uuid> Applications.localized/
  5. The app bundle is created from a template, which is filled in using information supplied by the guest. The information sent from the guest, as part of the Toolgate request, includes the app name, description and icon, amongst other things. This information is written into several files in the new app bundle, including the Info.plist, which is the (XML) file in an app bundle which includes metadata about the bundle
  6. The new helper app is launched, so it shows up in the dock

The helper app contains a binary called , which is copied directly from the template and exists as the entry point for the app bundle. When the app is run this binary will parse the Parallels-specific configuration files in the app bundle (e.g. ) and send a message to the corresponding guest VM to start the relevant application, if it’s not already running.WinAppHelperAppParams.pva

Here you can see a snippet of the Info.plist template, which is taken from the hypervisor binary. The highlighted placeholders are replaced with guest supplied input. Escaping Parallels Desktop with Plist Injection

Given that the host is taking input from the guest and using it to fill an Info.plist template, it is important that all input from the guest is appropriately escaped or sanitized, so it is not possible to inject XML into the plist and modify the behaviour of the helper app. I found that the escaping was done for all of the fields provided by the guest, apart from two, the URL schemes and the file extensions. These allow registering file extensions and URL schemes which the guest app will handle, respectively.

This means we could send our own Toolgate request (opcode ), to tell the host to create a helper app, with a malicious URL scheme or file extension. In my case I chose to exploit the URL schemes, which were written unescaped into the array, in Info.plist.0x8302CFBundleURLSchemes

The relevant template for creating the array looks like this:CFBundleURLSchemes

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleURLName</key>
    <string>Supported protocols</string>
    <key>CFBundleURLSchemes</key>
    <array>
    %1
    </array>
  </dict>
</array>

The is replaced with the guest-provided URL schemes, each wrapped in tags. The completed template is then inserted into the Info.plist template later on.%1<string></string>

This is what it looks like in code form: Escaping Parallels Desktop with Plist Injection

One way this can be abused is by using the LSEnvironment key to set the environment variable. This can be used to force the helper binary (WinAppHelper) to load an arbitrary dylib when executed. I did spend a while looking for other features of an Info.plist which I could exploit without requiring a second bug, but I wasn’t able to find anything better. I’d be very keen to hear any alternative ideas for exploitation.DYLD_INSERT_LIBRARIES

For example, if we provide the following string as a URL scheme:

      evil</string>
    </array>
  </dict>
</array>
<key>LSEnvironment</key>
<dict>
  <key>DYLD_INSERT_LIBRARIES</key>
  <string>/path/to/malicious.dylib</string>
</dict>
<key>blabla</key>
<array>
  <dict>
    <key></key>
      <array>
        <string>

This gets wrapped in <string> tags and inserted into the template, resulting in something like this:

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleURLName</key>
    <string>Supported protocols</string>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>evil</string>
    </array>
  </dict>
</array>
<key>LSEnvironment</key>
<dict>
  <key>DYLD_INSERT_LIBRARIES</key>
  <string>/path/to/malicious.dylib</string>
</dict>
<key>blabla</key>
<array>
  <dict>
    <key></key>
    <array>
      <string>
    </array>
  </dict>
</array>

Now when WinAppHelper is executed it will load a dylib of our choice. If we can make use of an existing dylib which does something interesting, or create our own dylib on disk somewhere, then we can use this to get code execution on the host.

Getting a File Write

To complete the goal of code execution on the host with no user interaction, I needed to find a way to write a controlled dylib to a known location on the host. Unfortunately there were no files in the helper app bundle which I controlled in their entirety (including e.g. the app icon). Shared folders seemed like a good place to look for bugs which could allow us to do this.

Shared folders in Parallels are actually implemented using Toolgate, which has opcodes for all aspects of file management, including opening, reading and writing files. The shared folder filesystem kernel module (), writes the relevant Toolgate instructions to the host when filesystem operations occur in the guest, and the host then performs the requested operation.prl_fs

As mentioned earlier, all of these opcodes are forbidden by the communication channel created by Parallels Tools, which means to send filesystem-related opcodes we need to load our own kernel module to do this, which unfortunately requires root permissions. To do this I took the existing code and made some modifications to remove the security checks.prl_tg

Once we can write arbitrary messages to Toolgate, we can open files in a shared folder using the () opcode. In the hypervisor, file paths are constructed by appending the file path provided by the guest to the configured shared folder path on the host. There are some security checks when handling an open request to make sure the guest can’t open files outside of the host shared folder path, including:TG_REQUEST_FS_L_OPEN0x223

  • Checking if the file path contains , which should have already been canonicalized by the guest..
  • Checking if the file is a symlink which points outside of the share
  • Opening the constructed path and checking if the resulting file is outside of the shared folder on the host, which is done using the option of .F_GETPATHfcntl

If any of these checks fail then Parallels will refuse to open the file and will return an error to the guest. The checks themselves look good, but the issue was a time-of-check to time-of-use (TOCTOU) opportunity between when the security checks happened and when the file was actually opened. This meant that if we quickly switched the path from a normal file to a symlink pointing to a path outside of the share on the host, after the security checks, but before the open, then the hypervisor would open the target of the symlink on the host for us. After that we could simply read from or write to the opened file using subsequent calls to Toolgate. In other words, this gives us the ability to read or write any file on the host, assuming the host process has permissions.

Escaping Parallels Desktop with Plist Injection

Ok, but why do we need Toolgate requests for this, if the shared folders filesystem does it for us? In theory this bug should be exploitable by just performing the race with files in a shared folder, without sending manual Toolgate requests. However, in practice, trying to exploit this race through only filesystem operations triggers a bug in the kernel module which results in a kernel oops.prl_fs

Combining the two

The first bug allows us to load any dylib on the host, and the second bug gives us the ability to write an arbitrary file anywhere on the host filesystem (assuming the Parallels process has permissions). Therefore we can create a malicious dylib, write it to a known location on the host, and force a helper app to load it, which will give us code execution with no user interaction.

We can use the following code compiled into a dylib, which will pop a calculator when the dylib is loaded.

#include <stdlib.h>

void __attribute__ ((constructor)) pwn() {
    unsetenv("DYLD_INSERT_LIBRARIES");
    system("osascript -e 'tell application \"Calculator.app\" to activate'");
}

Exploit Demonstration

Conclusion

This chain can be exploited from within any guest operating system by any code with elevated privileges, which are necessary to use the privileged instructions needed to write arbitrary Toolgate requests. If Parallels Tools is installed, then the plist injection bug can be exploited with low privileges, but the file write bug still requires loading our own kernel module to bypass the security restrictions and send our own filesystem-related Toolgate requests.

Overall, Parallels is a fun target. Based on the bugs I and others have found I would say that it’s more immature than the likes of VirtualBox and VMWare, and I’m sure there are plenty more bugs to be found here.

You can find the code for these exploits on my GitHub.

Timeline

  • Plist injection
    • Assigned CVE-2023-27328 / ZDI-23-220
    • 2022-11-03 – reported to vendor
    • 2022-12-13 – fix released in version 18.1.1
    • 2023-03-07 – public release of advisory
  • File open TOCTOU
    • Assigned CVE-2023-27327 / ZDI-23-215
    • 2022-11-03 – reported to vendor
    • 2022-12-13 – fix released in version 18.1.1
    • 2023-03-07 – public release of advisory

 

原文始发于pwn.win:Escaping Parallels Desktop with Plist Injection

版权声明:admin 发表于 2023年5月18日 下午8:15。
转载请注明:Escaping Parallels Desktop with Plist Injection | CTF导航

相关文章

暂无评论

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