Skip to content

Commit

Permalink
Trust additional binaries signed by Microsoft
Browse files Browse the repository at this point in the history
This fixes about:third-party not trusting some DLLs from Microsoft that are required.
  • Loading branch information
goodusername123 authored Sep 30, 2024
1 parent 902e71b commit 3fb8bf3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions toolkit/xre/dllservices/ModuleEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ Maybe<ModuleTrustFlags> ModuleEvaluator::GetTrust(
return Some(ModuleTrustFlags::MicrosoftWindowsSignature);
} else if (signedBy.EqualsLiteral("Microsoft Corporation")) {
return Some(ModuleTrustFlags::MicrosoftWindowsSignature);
} else if (signedBy.EqualsLiteral("Microsoft Windows Software Compatibility Publisher")) {
return Some(ModuleTrustFlags::MicrosoftWindowsSignature);
} else if (signedBy.EqualsLiteral("Mozilla Corporation")) {
return Some(ModuleTrustFlags::MozillaSignature);
} else if (signedBy.EqualsLiteral("BrowserWorks Ltd")) {
Expand Down

0 comments on commit 3fb8bf3

Please sign in to comment.