September 4, 2026

How to manage app permissions on Mac for better security

Maksym Sushchuk
Written by
A macOS specialist with 15+ years of experience, focused on macOS guides and product reviews.

Maksym Sushchuk

Alex Holovchenko
Approved by
Reviewed by a QA engineer at Nektony and Apple Certified Support Professional with hands-on experience testing Mac software.

Alex Holovchenko

Share

Every app on your Mac holds a list of things it is allowed to reach - your camera, your microphone, your screen, your files, your entire disk. Each grant you approved once, usually in a hurry, during a first launch you have long forgotten. This guide shows you how to see that list, decide what still deserves to be on it, and take back whatever does not.

You will find how macOS decides what an app can touch, which grants carry the most weight, how to change them in System Settings, how to deal with login items and background agents, and how to audit every installed app in one pass instead of clicking through categories one at a time.

Where to start

This guide covers several jobs. Pick the one that matches what you came for.

What you want to do Start here
Understand how macOS decides what apps can reach What app permissions actually are
Know which grants deserve attention first The permissions worth auditing first
Check and change permissions by hand Review permissions in System Settings
Stop something from launching itself Login items and background tasks
See every app's permissions at once Audit every app in one place
Clear out apps you no longer use Revoke, then uninstall properly

What app permissions actually are

Behind every “…would like to access your camera” dialog sits a framework called TCC - Transparency, Consent, and Control. Apple introduced it in macOS Mojave 10.14 and has widened its reach with almost every release since: Screen Recording and Input Monitoring arrived in Catalina 10.15, Local Network in Sequoia 15. Apple’s platform security documentation describes TCC as the mechanism governing access to files, Accessibility, and Automation.

TCC keeps its decisions in two SQLite databases. Per-user grants live in
~/Library/Application Support/com.apple.TCC/TCC.db

Copy

- the
~/Library

Copy

folder is the hidden Library inside your home folder. Machine-wide grants such as Full Disk Access live in
/Library/Application Support/com.apple.TCC/TCC.db

Copy

. System Integrity Protection guards both, so even an admin account cannot read them unless Terminal itself has been granted Full Disk Access.

Two rules follow from how the system works, and they answer most of the anxiety around this topic. An app appears in a permission list only after it has asked for that access at least once. The list is a record of requests, not a catalogue of everything installed. And every grant is reversible: switch it off and the app loses that capability until it asks again, which it will do the next time it needs it. Apple’s own security guide confirms that users can review and revoke any permission they have granted.

Terminal has a direct equivalent. The tccutil command resets the approval status for one service, optionally scoped to a single app by bundle identifier:

tccutil reset ScreenCapture us.zoom.xos

Copy

Terminal resetting the Screen Recording approval status for Zoom with tccutil

Warning:

Treat tccutil reset as reliable for most services and unreliable for one. Full Disk Access records - internally kTCCServiceSystemPolicyAllFiles - sometimes survive the reset. The toggle disappears from System Settings while the underlying row has been reported to stay in the database, which is one reason the graphical route is the safer default.

One category sits outside all of this. Local Network access, added in Sequoia and carried into Tahoe, runs on a separate mDNS and multicast mechanism rather than TCC, which is why it behaves differently from everything else in the Privacy & Security list. More on that in the next section.

Architecture makes no difference here. TCC behaves identically on Intel and Apple Silicon Macs, including for apps running under Rosetta 2; the same prompts, the same categories, the same database.

The permissions worth auditing first

Some grants hand over a keyhole view. Others hand over the building. The table below ranks the ones worth checking first by how much reach they actually confer.

Permission What it allows Why an app might need it Risk if abused
Full Disk Access Reads every file on the disk, including Mail and Messages databases and Time Machine backups Backup tools, antivirus, cleaners, migration utilities Total read access to your correspondence, documents, and credentials stores
Accessibility Controls the interface of other apps and synthesizes keyboard and mouse input Window managers, text expanders, automation and assistive tools Keylogging and silent UI control - a long-standing favorite of adware
Automation Drives other apps through Apple Events and AppleScript Launchers, workflow tools, scripting utilities Controlling Finder through Automation reaches most of what Full Disk Access reaches
Screen & System Audio Recording Captures the screen and system audio Video calls, screen recorders, screenshot tools Continuous capture of whatever is on screen, including passwords in plain view
Input Monitoring Reads keystrokes even while the app is in the background Hotkey managers, macro tools, remote-control clients Background keystroke capture across every app you use
Camera and Microphone Uses the built-in or connected camera and mic Conferencing, recording, dictation Recording without a visible cue in the interface
Local Network Reaches other devices on your LAN NAS clients, media servers, home automation, dev servers Device discovery and lateral movement across your home or office network

Accessibility deserves particular care because it is the one grant that lets an app act as you. Apple’s support documentation advises allowing it only for apps you trust, and that advice is worth taking literally - an app with Accessibility can read window contents and issue clicks and keystrokes anywhere on the system.

Screen Recording works on a timer that no other permission uses. In the early macOS Sequoia betas Apple asked users to reconfirm it every week; the company relaxed that to monthly before release, and monthly is where it stands in Tahoe. There is no supported way to switch the reminder off; you reconfirm each time, or you revoke the permission for good. The recurring prompt makes a decent calendar reminder for the rest of your audit.

Local Network is the category most likely to confuse you, because denying it produces silence rather than an error. A NAS mount that stops appearing, a Home Assistant dashboard that never loads, a local dev server your API client cannot reach… all of them look like network faults, and none of them announces a permission problem. The failure mode also survives app updates: Insomnia users on Tahoe 26.3.1 lost localhost access after an update changed the app’s signature. When a LAN app breaks for no visible reason, check this list first.

If you're here because you assume your AI app has gotten too many permissions, read also:How to remove AI apps on Mac: Models, caches, and all hidden files

Review and change permissions in System Settings

The graphical route covers everything you need and requires no Terminal, no SIP privileges, and no risk of leaving the system in an odd state. Apple’s support page documents the canonical path, and it has not changed in Tahoe.

  1. Open System Settings from the Apple menu or the Dock.
  2. Click Privacy & Security in the sidebar.
  3. Pick the category you want to inspect - Camera, Microphone, Full Disk Access, Screen & System Audio Recording, Accessibility, Local Network, and so on.
  4. Switch off the toggle next to any app that should not hold that access.
Privacy & Security pane in System Settings listing every permission category

The summary line under each category tells you how much work is waiting. Full Disk Access - 11 full access on the test Mac above means eleven apps can read every file on the disk; Files & Folders - 16 apps means sixteen hold narrower, folder-scoped grants. Start with the categories carrying the largest counts.

Inside a category you get one row per app and one toggle each. Anything you do not recognize by name is worth a search before you decide, and anything you recognize but no longer use is a straightforward switch-off.

Camera permission list showing a toggle next to each app that requested access

Automation works differently from the rest, and most guides skip past it. Each row has a disclosure arrow, and clicking it expands the list of apps that this app is allowed to drive through Apple Events. That nesting is where the real detail sits: an app permitted to control Finder can reach files across your disk without ever appearing in the Full Disk Access list. Expand every row here at least once.

Automation list with disclosure arrows showing which apps each app is allowed to control

If you check permissions often, a Terminal shortcut saves the clicking. This URL scheme opens the Privacy & Security pane directly and has worked unchanged from Big Sur through Tahoe 26:

open "x-apple.systempreferences:com.apple.preference.security?Privacy"

Copy

Terminal command that opens the Privacy & Security pane directly

Note:

Two limits of this interface are worth knowing before you fight them. Toggles in the Full Disk Access pane are sometimes greyed out even after you unlock the padlock, a long-running complaint on Apple’s forums. And there is no button anywhere that resets a whole category at once - System Settings works one app at a time, so a mass revoke needs either Terminal or the tool covered further down.

Login items and background tasks

Permissions govern what an app can reach. Login items govern when it runs, and an app that starts itself every morning gets to use its permissions every morning. Apple’s support page covers both lists, which live at System Settings → General → Login Items & Extensions. The section moved out of Users & Groups back in Ventura 13 and has stayed put since.

Login Items and Extensions pane showing the Open at Login list above App Background Activity

The two lists do different jobs. Open at Login holds ordinary apps that launch when you sign in, and the - button under the list removes any of them. App Background Activity holds the agents and daemons that apps register through the ServiceManagement framework, a mechanism Apple added in Ventura 13; each entry has a toggle and a count of how many items that app registered. An app with a background item can run and use its permissions without ever showing a window.

For a complete picture, Terminal has one command the interface cannot match:

sfltool dumpbtm

Copy

Terminal output of sfltool dumpbtm listing every registered background item

The output lists every registered background item with its UUID, developer name, type, and disposition, including legacy daemons and entries the graphical list renders as Unknown Developer. Treat it as a verification tool: when something clearly runs at startup but nothing in System Settings admits to it, this is where you find the record.

Note:

The “Background Items Added” notification has its own reputation. Users have reported it reappearing after every restart, even with the background list cleared, on releases from Ventura onward. That behavior belongs to macOS rather than to any app you installed, so a persistent notification is not a sign that your cleanup failed.

Audit every app’s permissions in one place

System Settings organizes permissions by category, which is the wrong axis for the question most people actually have. “What can this app reach?” requires opening a dozen categories and reading each list for one name. App Cleaner & Uninstaller by Nektony inverts that: a 2026 update introduces a privacy permission view that lists apps first and shows the grants attached to each one.

The app list carries a permission count under every name - 3 Permissions, 1 Permission - so a scan down the sidebar tells you which apps hold access before you click anything. Selecting an app opens its card, where App Access shows each grant as a labelled chip: Camera, Microphone, Screen Recording, Full Disk Access, Location Services, and the rest of the TCC categories.

App Cleaner and Uninstaller showing App Access permission chips on the Zoom app card

Two more fields on that card feed the keep-or-remove decision. App verification reports whether Apple notarized the build, which separates a known developer from an unsigned binary you no longer remember installing. AI App Summary gives a one-line description of what the app is for - useful when the name alone tells you nothing.

Right-clicking a permission chip opens the actions. Revoke Permission drops that single grant, Revoke All Permissions clears every grant the app holds in one step, and Open in System Settings jumps to the matching category if you would rather confirm the change there.

Right-click menu offering Revoke Permission and Revoke All Permissions in App Cleaner and Uninstaller

That bulk action is the part System Settings has no equivalent for. Clearing every grant an app holds takes one click here and a walk through six or seven categories there.

Revoke, then uninstall properly

Revoking and uninstalling solve different halves of the same problem, and doing only one leaves the other open.

A TCC record is keyed to an app’s bundle identifier and code signature rather than to the presence of a file in
/Applications

Copy

. Drag an app to the Trash and its permission records can stay in the database, which is why apps you removed months ago still turn up in the Privacy & Security lists. The same drag leaves the app’s launch agents, preference files, and support folders behind - dormant, still registered, and ready to work again if you ever reinstall.

So the order that actually clears everything is: revoke first, uninstall second.

  1. Open the app’s card and use Revoke All Permissions to clear its TCC records while the app is still installed and its signature still matches.
  2. Uninstall it with a tool that finds its service files - App Cleaner & Uninstaller scans
    ~/Library/LaunchAgents

    Copy

    ,
    /Library/LaunchDaemons

    Copy

    ,
    Application Support

    Copy

    ,
    Caches

    Copy

    , and
    Preferences

    Copy

    for files tied to that bundle ID and removes them together with the app.
  3. Check Login Items & Extensions afterwards and clear any entry the app left in either list.

Doing it in that order means no orphaned database rows, no stray launch agents, and no reappearance in a permission list you thought you had cleaned.

Build a permission-audit habit

Permissions accumulate quietly. Every install adds a few, and nothing in macOS ever suggests reviewing them, so the list only grows in one direction unless you intervene.

The monthly Screen Recording reconfirmation makes a convenient anchor. When that prompt appears, spend ten minutes on the rest instead of dismissing it and moving on. Check permissions again right after installing anything new, while you still remember what it asked for and why.

Here is the short list worth walking through each time:

  • Full Disk Access - the shortest list should be the strictest one
  • Screen & System Audio Recording - check who can watch, and revoke anything you no longer use for calls or capture
  • Accessibility - every entry here can act as you
  • Input Monitoring - background keystroke access, rarely needed by more than a tool or two
  • Automation - expand each row and read the targets, especially Finder
  • Local Network - the one nobody remembers to check
  • Login Items & Extensions - both lists, including background activity
  • Camera and Microphone - quick to scan, easy to leave stale

Ask one question per row: does this app need this access right now? An app you use weekly and trust keeps its grant. An app you have not opened in six months does not - and if you cannot remember installing it at all, that is a signal to remove it rather than merely to revoke.

The bottom line

Permissions on a Mac are a record of decisions made quickly, months or years ago, one dialog at a time. Reviewing them is the cheapest security work available: no software to configure, no risk of breaking anything, and every change reversible in a click.

Start with the categories that grant the most reach - Full Disk Access, Accessibility, Automation, Screen Recording, Input Monitoring - and work down. Revoke what you do not recognize; the app will ask again if it genuinely needs the access. Check Local Network too, since it fails silently and most guides skip it. And when you decide an app has no business on the Mac at all, revoke its grants first and then uninstall it with its service files, so it leaves nothing behind to come back to.

Frequently asked questions

What are app permissions on a Mac, and how does macOS control them?

They are per-app grants to specific resources - camera, microphone, screen, files, disk, network - managed by a framework called TCC (Transparency, Consent, and Control), introduced in macOS Mojave 10.14. When an app first needs a protected resource, macOS shows a prompt and records your answer in a SQLite database that System Integrity Protection guards. Every category except Local Network runs through TCC.

How can I see every permission an app has on my Mac?

System Settings organizes the data by category, so answering this for one app means opening each category in turn and looking for its name. App Cleaner & Uninstaller by Nektony lists apps first instead, showing a permission count next to each and the full set of grants on the app's card.

Is it safe to revoke an app's permission - will it break the app?

Revoking is reversible. The app loses that capability and asks again the next time it needs it, which for most apps means the next launch or the next relevant action. The only lasting effect is on features that depend on the access - a video call app without camera access will join calls without video.

Which Mac app permissions are the most dangerous to grant?

Full Disk Access, Accessibility, and Automation carry the widest reach. Full Disk Access reads everything including Mail and Messages databases; Accessibility lets an app control the interface and synthesize input, the classic keylogger capability; Automation targeting Finder reaches nearly as far as Full Disk Access does. Screen Recording and Input Monitoring come next.

Why does an unfamiliar app have Full Disk Access, and should I remove it?

Most often it is a backup tool, antivirus, cleaner, or migration utility that asked during setup and was approved and forgotten. Search the name before acting. If the app is one you use and its purpose explains the need, leave it; if you cannot identify it or have not opened it in months, revoke the access and consider removing the app entirely.

How do I stop apps from running in the background or launching at login?

Open System Settings → General → Login Items & Extensions. Remove entries from Open at Login with the - button, and switch off entries under App Background Activity to stop the agents and daemons an app registered. For a complete list including items the interface does not show, run
sfltool dumpbtm

Copy

in Terminal.

I deleted an app - why does it still show up in my Privacy & Security list?

TCC records are keyed to the bundle identifier and code signature, not to a file on disk, so moving an app to the Trash leaves its permission rows in the database. Revoke the grants before you uninstall, or use an uninstaller that clears the app's records and service files along with the bundle.

What is the Local Network permission, and why did an app stop working after I denied it?

It controls whether an app can discover and reach other devices on your LAN, and it was added in macOS Sequoia 15. It runs on mDNS and multicast rather than TCC, and denial produces no error message - the app simply cannot see the network. NAS clients, media servers, home automation dashboards, and local dev servers are the usual casualties.

Why is a permission toggle greyed out or locked?

A few causes are common: the padlock at the bottom of the pane still needs an administrator unlock, the app is currently running and must be quit first, or a configuration profile from an employer or school manages that setting. Full Disk Access toggles have also been reported as greyed out after unlocking, a known quirk of that particular pane.

How often should I review my Mac's app permissions?

Once a month is enough for most people, and macOS supplies the reminder - the Screen Recording permission asks for reconfirmation on roughly that cadence. Beyond the schedule, review right after installing anything new, while you still remember what it requested.

Scroll to Top