https://bugs.winehq.org/show_bug.cgi?id=56724
--- Comment #2 from Fabian Maurer dark.shadow4@web.de --- Problem is
content/browser/utility_sandbox_delegate_win.cc:UtilitySandboxedProcessLauncherDelegate::DisableDefaultPolicy
returns true in case sandbox::mojom::Sandbox::kNetwork It's called by
sandbox/policy/win/sandbox_win.cc:GenerateConfigForSandboxedProcess
it now doesn't call AddDefaultConfigForSandboxedProcess, which breaks things under wine Reason is "config->SetIntegrityLevel(INTEGRITY_LEVEL_LOW);" not being called Then
sandbox/win/src/sandbox_policy_base.cc:AddAppContainerProfile
Doesn't "return SBOX_ERROR_BAD_PARAMS;" and the function continues It calls
sandbox/win/src/app_container_base.cc:AppContainerBase::CreateProfile
Which calls CreateAppContainerProfile, which is missing in Wine.
MR: https://gitlab.winehq.org/wine/wine/-/merge_requests/5725