We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 339b121 commit 914f723Copy full SHA for 914f723
security/sandbox/win/src/sandboxbroker/sandboxBroker.cpp
@@ -277,6 +277,9 @@ static void AddDeveloperRepoDirToPolicy(sandbox::TargetPolicy* aPolicy) {
277
#undef WSTRING
278
279
static void EnsureAppLockerAccess(sandbox::TargetPolicy* aPolicy) {
280
+ if (!IsWin7OrLater()) {
281
+ return;
282
+ }
283
if (aPolicy->GetLockdownTokenLevel() < sandbox::USER_LIMITED) {
284
// The following rules are to allow DLLs to be loaded when the token level
285
// blocks access to AppLocker. If the sandbox does not allow access to the
0 commit comments