-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
After adding support for signed App Control policies to the AppControl Manager app, now adding support for Supplemental policy signers and Update policy signers to the merge functions. Improved the merge functions further to consider the signing scenario during deduplication of FileRules. Fixed a bug in Merge operation related to WHQLFilePublisher and WHQLPublisher level deduplication, their IDs were being considered instead of value. The Merge button now stays disabled while the merge operation is running. Added support for AllowAll/DenyAll FileRules in the merge functions.
- Loading branch information
Showing
12 changed files
with
443 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
AppControl Manager/SiPolicyIntel/SupplementalPolicySignerRule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using AppControlManager.SiPolicy; | ||
|
||
namespace AppControlManager.SiPolicyIntel; | ||
|
||
internal sealed class SupplementalPolicySignerRule | ||
{ | ||
internal required Signer SignerElement { get; set; } | ||
internal required SupplementalPolicySigner SupplementalPolicySigner { get; set; } | ||
} |
Oops, something went wrong.