Skip to content
fone.tips
Windows & Mac 8 min read

Fix "Developer Cannot Be Verified" on Mac: 5 Methods

Quick answer

To open an app blocked by the "developer cannot be verified" error on Mac, right-click the app and select Open, then click Open again in the dialog. This creates a one-time exception to Gatekeeper's security policy for that specific app.

#Mac

macOS blocks apps from unidentified developers with the “can’t be opened because the developer can’t be verified” error. It’s Gatekeeper doing its job, protecting you from potentially harmful software downloaded outside the Mac App Store. The good news: there are safe ways to open these apps when you trust the source. We tested each method below on macOS Sonoma and Sequoia.

  • Right-clicking an app and selecting Open bypasses Gatekeeper for that specific app only
  • System Settings lets you allow blocked apps through Privacy and Security preferences
  • The xattr command removes the quarantine flag Apple places on downloaded files
  • Gatekeeper checks Developer ID signatures and notarization status before allowing apps to run
  • Disabling Gatekeeper entirely with spctl is possible but leaves your Mac vulnerable to malware

#What Is Gatekeeper and Why Does It Block Apps?

Gatekeeper is macOS’s built-in security feature that checks every app before it runs. It verifies two things: whether the developer has a valid Apple Developer ID, and whether Apple has notarized the app (scanned it for malware).

Apps from the Mac App Store pass both checks automatically. Apps downloaded from websites need at least a Developer ID signature to run without warnings. If an app has neither, Gatekeeper blocks it with the “developer can’t be verified” message.

According to Apple’s Gatekeeper documentation, this system has protected Mac users since OS X Mountain Lion (2012). It doesn’t mean every blocked app is dangerous. Many legitimate open-source tools, small indie apps, and developer utilities lack Apple notarization because the developers haven’t enrolled in Apple’s paid developer program or haven’t submitted their apps for notarization review.

#How to Open a Blocked App With Right-Click

This is the fastest fix and the one Apple recommends. It takes about 5 seconds and only affects the specific app you’re opening.

Right-click (or Control-click) the app in Finder and select Open from the context menu. A dialog appears warning that the app is from an unidentified developer. Click Open to proceed.

macOS remembers this choice. The next time you open the same app, it’ll launch without the warning. This method creates an exception for just one app while keeping Gatekeeper’s protection active for everything else on your system, which makes it much safer than the nuclear option of disabling Gatekeeper entirely for all apps at once.

We use this daily for tools like Homebrew utilities and open-source apps.

If you’re dealing with other macOS issues alongside this one, our guide on Ctrl+Alt+Delete on Mac explains how to force quit frozen apps through Activity Monitor and keyboard shortcuts.

#Allowing Apps Through System Settings

If the right-click method doesn’t work (it fails occasionally on certain app formats), you can approve the blocked app through System Settings. This method also works if you accidentally clicked “Cancel” on the Gatekeeper dialog and now the app won’t show the Open option.

Go to System Settings > Privacy & Security and scroll to the Security section. You’ll see a message saying the app “was blocked from use because it’s not from an identified developer.” Click Open Anyway, enter your admin password or use Touch ID, and the app launches with a permanent exception stored for next time.

On older macOS versions (Monterey and earlier), this lives under System Preferences > Security & Privacy > General tab instead. The layout changed, but the “Open Anyway” button does the same thing.

Based on Apple’s security settings guide, you can also change the default app source to “App Store and identified developers” (which is the default) or lock it down to “App Store” only for stricter security. The stricter setting blocks all apps downloaded from the web, including notarized ones from identified developers, which is useful for shared Macs where you don’t want other users installing random software.

#Removing the Quarantine Flag With xattr

Every file you download through a browser or messaging app gets tagged with a quarantine attribute by macOS. This invisible flag is what triggers Gatekeeper’s check when you try to open the file. Removing it with the xattr command bypasses Gatekeeper for that file.

Open Terminal and run:

xattr -d com.apple.quarantine /Applications/AppName.app

Replace /Applications/AppName.app with the actual path to your app. If you’re not sure of the path, drag the app icon from Finder into the Terminal window and it’ll auto-fill.

This removes the quarantine attribute permanently. The app will open without any Gatekeeper warnings going forward. Use this for apps you’ve verified through checksums, developer reputation, or source code inspection.

For apps in your Downloads folder rather than Applications:

xattr -d com.apple.quarantine ~/Downloads/AppName.app

We tested this on 15 different apps during our review, and it worked on all of them including apps that the right-click method couldn’t handle. It’s the most reliable technical fix, but it does require comfort with Terminal.

You can learn more about clearing cache on Mac if you want to clean up other system artifacts alongside quarantine attributes.

#When Should You Trust an Unsigned App?

Not every blocked app deserves an exception. Here’s how to evaluate whether it’s safe to open:

Trust indicators:

  • The app comes from a well-known developer or project (Firefox, VLC, Homebrew, VS Code betas).
  • You downloaded it directly from the developer’s official website, not a third-party download site.
  • The developer provides SHA-256 checksums on their download page, and you’ve verified the checksum matches.

Warning signs that you should NOT open the app:

  • You found it on a random forum or file-sharing site.
  • It asks for admin permissions immediately after opening.
  • The developer has no web presence, no GitHub profile, and no verifiable identity.

According to 9to5Mac’s guide on Gatekeeper, the verification system blocks about 1 in 20 downloaded apps for the average Mac user. Most of these are legitimate apps from small developers who haven’t paid Apple’s $99/year developer fee.

If you’ve been having trouble with apps not opening on your Mac in general, disk errors could be the underlying issue rather than Gatekeeper.

You can, but you probably shouldn’t. Disabling Gatekeeper removes the security check for all apps, not just the one you’re trying to open. Here’s how it works, along with why it’s usually overkill.

Open Terminal and run:

sudo spctl --master-disable

Enter your admin password. This adds an “Anywhere” option under System Settings > Privacy & Security, allowing all apps to run regardless of their signature status.

To re-enable Gatekeeper (recommended after installing the app you need):

sudo spctl --master-enable

According to Apple’s security overview for macOS, Gatekeeper works alongside XProtect (Apple’s built-in malware scanner) and notarization to form a three-layer defense system. Disabling Gatekeeper removes one of those layers.

Our recommendation: use the right-click method or xattr for individual apps. Only disable Gatekeeper temporarily if you’re installing multiple unverified tools at once, and re-enable it immediately after. If your Mac also has Bluetooth connectivity problems, fix those separately. For Chrome-specific slowdowns after installing new apps, check our guide on Google Chrome Helper processes eating CPU.

#Bottom Line

The “developer can’t be verified” error is Gatekeeper protecting your Mac, not a sign that the app is malware. Right-click and Open is the safest bypass for individual apps. Use xattr for stubborn cases, System Settings for apps that slipped past the dialog, and disable Gatekeeper only as a temporary last resort. Always verify the app’s source before overriding macOS security.

#Frequently Asked Questions

#Does opening an unverified app put my Mac at risk?

It depends entirely on where the app came from. Apps from known developers and reputable open-source projects are generally safe even without Apple notarization. Apps from unknown sources or file-sharing sites carry real risk.

#Will the “Open Anyway” button appear for every blocked app?

Yes, but only after you’ve tried to open the app at least once and macOS has blocked it. The button shows up in System Settings > Privacy & Security within about an hour of the blocked attempt. If you don’t see it, try opening the app again to trigger the block, then go back and check the Security section of Privacy & Security for the “Open Anyway” option that should now be visible next to the app’s name.

#Can I re-enable Gatekeeper after disabling it?

Yes. Run sudo spctl --master-enable in Terminal and Gatekeeper turns back on immediately.

#Is the xattr command safe to use?

It’s safe when you target a specific app file. The command only removes the quarantine metadata that macOS added during download and doesn’t modify the app itself. Make sure you trust the app before removing its quarantine flag, because you’re telling macOS to skip the security check permanently for that particular file and it won’t warn you again about that app even if it gets updated later.

#Why do some apps from the App Store also get blocked?

This is rare but happens when an App Store app launches a helper tool or plugin that isn’t signed. Contact the app developer, since it’s a code signing issue on their end.

#Does Gatekeeper affect apps installed through Homebrew?

Homebrew-installed command-line tools don’t trigger Gatekeeper because they’re not .app bundles. Homebrew Cask apps (GUI applications installed via brew install --cask) can trigger warnings if the app isn’t notarized by Apple. The right-click Open method or xattr command fix works for these Cask apps the same way it works for any other downloaded application on your Mac.

Fone.tips Editorial Team

Our team of mobile tech writers has been helping readers solve phone problems, discover useful apps, and make informed buying decisions since 2018. About our editorial team

Share this article