Deploying SAP Privileges Auto App with Privileges Checker

By Jonathan Connor

Learn how to deploy SAP Privileges alongside the Kandji Privileges Checker

What is SAP Privileges?

SAP Privileges is an open-source tool for macOS that allows users to temporarily elevate their user accounts from standard to administrative when needed. This is particularly useful in environments where security best practices suggest that users should operate with the least privileges necessary for daily tasks but occasionally need administrative rights for specific actions.

How does SAP Privileges work?

The SAP Privileges app for macOS allows users to elevate their privileges to perform administrative tasks temporarily. The built-in functionality of SAP Privileges supports time-based rights expiration, but only if the privileges are first granted by right-clicking the Dock icon and selecting the "Toggle Privileges" option. This means that the app will revert the user to standard privileges after a set period if they use this specific method to elevate their rights.

However, users can also launch the full SAP Privileges app to elevate their privileges, which bypasses the Dock icon method. To address this, we have released companion code that enforces the timeout even when privileges are escalated through other methods, such as launching the full app.

Configuring SAP Privileges in Kandji

Requirements

  • Privileges Checker audit script (GitHub Link)
  • Privileges Checker remediation script (GitHub Link)
  • A tool for custom profile creation, such as iMazing Profile Editor
  • The SAP Privileges Auto App, Custom Script, and Custom Profile must all be added to the same Blueprint(s)
  • The Demote user accounts to standard Parameter must be disabled on any Assignment Maps or Classic Blueprints where Privileges is assigned

Adding the SAP Privileges Auto App

This Auto App deploys a configuration profile allowing background items for SAP Privileges and Privileges Checker. This is to ensure core functionality for the add-on, and has no impact if Privileges Checker is not present.

  1. Click Library in the left-hand navigation bar.
  2. Click Add new in the upper right-hand corner.
  3. Type Privileges in the Search bar, or scroll down to the Auto App section and locate SAP Privileges.
  4. Click Add & Configure on the SAP Privileges item.
  5. Assign the Auto App to a test Blueprint.
  6. Select desired installation method and hit Save.

Adding and Configuring the Privileges Checker Script

Once this script is deployed, Privileges Checker will revoke rights for the logged-in user after the set timeout has expired.
  1. Click Library on the left-hand navigation bar.
  2. Click Add new in the upper right-hand corner.
  3. Click Custom Script from the General section, then Add & Configure.
  4. Give your custom script a Name.
  5. Assign your custom script to the desired Blueprint(s).
  6. Optionally, configure Assignment Rules.
  7. Select Run every 15 minutes as the Execution Frequency.
  8. Paste the audit script you downloaded earlier into the Audit Script text field. Edit the script on line 65 to set a Boolean value for USE_PROFILE_TIMEOUT, and a string value for USERS_TO_EXCLUDE.
    • For USE_PROFILE_TIMEOUT:
      1. Set to either True or False: Enforces a timeout in minutes from DockToggleTimeout key set in the Privileges configuration profile (see below).
      2. If the value is marked True but no profile is installed, or if the DockToggleTimeout key is not defined, the timeout will default to MINUTES_TO_WAIT. Otherwise, the configuration profile will override the locally set value MINUTES_TO_WAIT.
    • For USERS_TO_EXCLUDE:
      1. If no admin is defined, all admins will get demoted.
      2. Admin names must be placed inside the double quotes.
  9. Edit the script on line 59 to set an integer value for MINUTES_TO_WAIT. This is the number of minutes an end user should be allowed admin rights once granted.
  10. Edit the script on line 65 to set a Boolean value for USE_PROFILE_TIMEOUT.
    1. Set to either True or False: Enforces a timeout in minutes from DockToggleTimeout key set in the Privileges configuration profile (see below).
    2. If the value is marked True but no profile is installed, or if the DockToggleTimeout key is not defined, the timeout will default to MINUTES_TO_WAIT. Otherwise, the configuration profile will override the locally set value MINUTES_TO_WAIT.
  11. Edit the script on line 72 to set a string value for ">USERS_TO_EXCLUDE.
    1. Admin names must be placed inside the double quotes.
  12. Click Save.

Creating a Custom Profile

Profile creation steps are optional if you are setting the rights timeout via script. You can also review additional profile options that SAP Privileges supports on their GitHub page.

If the EnforcePrivileges key in the Custom Profile is set with any value, it will disable the PrivilegesCLI used in the Privileges Checker and override its ability to demote users.
  1. Open iMazing Profile Editor
  2. On the left side, under Available System Domains, locate and click SAP Privileges.
  3. Click Add Configuration Payload.
  4. Enter a value for Dock Toggle Timeout.
    • If Privileges is configured with the DockToggleTimeout payload, but Privileges Checker is not deployed, timed rights revocation will only occur if a user right-clicks the Privileges Dock icon and selects Toggle privileges.
  5. Optionally, configure any additional settings for SAP Privileges as desired.
  6. Click the General section; populate the required values for Name and Identifier.
  7. Hit Command+S to save your profile.

Adding and Configuring the Custom Profile

  1. In the Kandji web app, click Library in the left-hand navigation bar.
  2. Click Add New in the upper right-hand corner.
  3. Click Custom Profile from the Add New window.
  4. Give the profile a Name.
  5. Assign your custom profile to a test Blueprint.
  6. Set the Device Families to Mac.
  7. Upload the .mobileconfig you customized and saved above.
  8. Save your custom profile.

Technical details about Privileges Checker can be found on our GitHub Learn More.