Talos Vulnerability Report

TALOS-2018-0707

CleanMyMac X removeItemAtPath Privilege Escalation Vulnerability

January 2, 2019
CVE Number

CVE-2018-4034

Summary

The CleanMyMac X software contains an exploitable privilege escalation vulnerability that exists due to improper input validation. An attacker with local access could use this vulnerability to modify the file system as root.

Tested Versions

Clean My Mac X 4.04

Product URLs

https://macpaw.com/cleanmymac

CVSSv3 Score

7.1 - CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:H/A:N

CWE

CWE-19: Improper Input Validation

Details

CleanMyMac X is an all-in-one cleanup and optimization tool for the Mac operating system. The application is able to scan the system and user directories, looking for unused and leftover files and applications. The applications also markets the ability to help detect and prevent viruses and malware on OS X. The software utilizes a privilege helper tool running as root to get this work done faster. This allows the application to remove and modify system files.

The vulnerability arises in removeItemAtPath function of the helper protocol. The code for this function is:

v10 = 0LL;
v7 = objc_msgSend(&OBJC_CLASS___NSFileManager, "defaultManager", 0LL);
v8 = (void *)objc_retainAutoreleasedReturnValue(v7);
v9 = (unsigned __int64)objc_msgSend(v8, "removeFileAtPath:error:", arg_3, &v10);         [0]
if ( arg_4 )
  (*(void (__fastcall **)(__int64, _QWORD, __int64))(arg_4 + 16))(arg_4, (unsigned int)v9, v10);

At location [0], a user-supplied argument is passed into the function removeFileAtPath. There is no validation of the calling application. Therefore, any application is able to access this function, and because this is a privileged helper, it runs as root. This crosses a privilege boundary, allowing non-root users to delete files from the root file system.

Exploit Proof of Concept

Included with this advisory is an Xcode project, as well as a Python script. The Python script needs an administrator password to set up some root files on the system to demonstrate the vulnerabilities. The Xcode project contains the proof of concept.

Timeline

2018-11-09 - Vendor Disclosure
2018-12-27 - Vendor Patched
2019-01-02 - Public Release

Credit

Discovered by Tyler Bohan of Cisco Talos.