Skip to content

Commit b907586

Browse files
[13.x] Validate key files' permissions (#1789)
* validate key permissions * oauth2-server handles Windows
1 parent 041a795 commit b907586

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Passport.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Passport
2020
/**
2121
* Indicates if Passport should validate the permissions of its encryption keys.
2222
*/
23-
public static bool $validateKeyPermissions = false;
23+
public static bool $validateKeyPermissions = true;
2424

2525
/**
2626
* Indicates if the refresh token should be revoked after use.

src/PassportServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ protected function makeCryptKey(string $type): CryptKey
255255
$key = 'file://'.Passport::keyPath('oauth-'.$type.'.key');
256256
}
257257

258-
return new CryptKey($key, null, Passport::$validateKeyPermissions && ! windows_os());
258+
return new CryptKey($key, null, Passport::$validateKeyPermissions);
259259
}
260260

261261
/**

0 commit comments

Comments
 (0)