Skip to content

Instantly share code, notes, and snippets.

@mtauraso
Last active February 10, 2021 04:45
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save mtauraso/b4839ee262ab6f612805 to your computer and use it in GitHub Desktop.
Save mtauraso/b4839ee262ab6f612805 to your computer and use it in GitHub Desktop.
TCC Database Script
#!/bin/bash
# This will add lauchd to the list of allowed processes for accessibility access
sudo sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db "INSERT or REPLACE INTO access VALUES('kTCCServiceAccessibility','/sbin/launchd',1,1,1,NULL)"
# This outputs the rows in the TCC database
sudo sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db 'select * from access'
echo "Restart is required for these changes to take effect"
@mtauraso
Copy link
Author

Thanks, that is correct. I've updated the gist

@dugalp
Copy link

dugalp commented Mar 9, 2017

I found out that in macOS Sierra, TCC is not allowed to be modified unless SIP is disabled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment