Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

mactracker

macrumors regular
Original poster
In Beta 5, Apple disabled the flow to automatically update weak and compromised passwords using Apple Intelligence and Safari. You can get it back by re-enabling the feature flag.

passwords-beta6.png


To enable:

Bash:
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain

sudo defaults write \
  /Library/Preferences/FeatureFlags/Domain/Safari.plist \
  apc -dict Enabled -bool true

sudo defaults write \
  /Library/Preferences/FeatureFlags/Domain/Safari.plist \
  apc_bulk -dict Enabled -bool true

and restart your Mac. One feature flag (apc) enables the option to automatically change a single password when you select a recommendation, and the second one (apc_bulk) enables the bulk change feature.

To disable:

Bash:
sudo defaults delete \
  /Library/Preferences/FeatureFlags/Domain/Safari.plist apc

sudo defaults delete \
  /Library/Preferences/FeatureFlags/Domain/Safari.plist apc_bulk
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.