Summary
On Linux Mint 22 (Ubuntu 24.04), all external URL navigations hang at COMPUTED_PRIVACY_MODE / NETWORK_DELEGATE_BEFORE_START_TRANSACTION. Localhost works. Guest mode (--guest) works. Reproduces v0.39.0 through v0.44.0.1.
chrome/browser/enterprise/data_protection/data_protection_navigation_observer.cc:224 fires on every external navigation and triggers a RealTimeUrlLookupServiceBase::DoLookup async call that never completes its callback for non-guest profiles when CBCM is off and ESB is off.
Verbose log with --vmodule="*data_protection*=2" confirms:
enterprise.data_protection: URL to scan: https://example.com/
Request then stalls at COMPUTED_PRIVACY_MODE, never reaches NETWORK_DELEGATE_BEFORE_START_TRANSACTION.
Key isolation: --guest bypasses this code path entirely → pages load fine.
Things ruled out
- CBCM not enabled, ESB not set, no managed policy files on system
--disable-features=SafeBrowsing,EnterpriseRealtimeURLChecks,RealTimeUrlLookup,DataProtectionUrlPing,SafeBrowsingHashPrefixRealTimeLookups — none help
- Brand-new
--user-data-dir, --disable-extensions, --no-sandbox, --proxy-server=direct:// — none help
- Tailscale stopped, IPv6 disabled — no effect
- Managed policy JSON files with
SafeBrowsingProtectionLevel: 0 — no effect
- Other Chromium browsers (Edge, Wavebox, system Chromium) work fine on same machine
Workaround
Launch with --guest (loses profile persistence).
Environment
- Linux Mint 22 / Ubuntu 24.04, kernel 6.8
- BrowserOS v0.44.0.1 (Chromium 146.0.7821.31), v0.43.0, v0.39.0.3
GitHub
#963
Summary
On Linux Mint 22 (Ubuntu 24.04), all external URL navigations hang at
COMPUTED_PRIVACY_MODE/NETWORK_DELEGATE_BEFORE_START_TRANSACTION. Localhost works. Guest mode (--guest) works. Reproduces v0.39.0 through v0.44.0.1.Root Cause (follow-up from Nathan Apter (@napter), 2026-05-07)
chrome/browser/enterprise/data_protection/data_protection_navigation_observer.cc:224fires on every external navigation and triggers aRealTimeUrlLookupServiceBase::DoLookupasync call that never completes its callback for non-guest profiles when CBCM is off and ESB is off.Verbose log with
--vmodule="*data_protection*=2"confirms:Request then stalls at
COMPUTED_PRIVACY_MODE, never reachesNETWORK_DELEGATE_BEFORE_START_TRANSACTION.Key isolation:
--guestbypasses this code path entirely → pages load fine.Things ruled out
--disable-features=SafeBrowsing,EnterpriseRealtimeURLChecks,RealTimeUrlLookup,DataProtectionUrlPing,SafeBrowsingHashPrefixRealTimeLookups— none help--user-data-dir,--disable-extensions,--no-sandbox,--proxy-server=direct://— none helpSafeBrowsingProtectionLevel: 0— no effectWorkaround
Launch with
--guest(loses profile persistence).Environment
GitHub
#963