security icon indicating copy to clipboard operation
security copied to clipboard

🔑 Provides authentication, authorization and a role-based access control management via ACL (Access Control List)

Results 12 security issues
Sort by recently updated
recently updated
newest added

- new feature - BC break? no Old design: ![Snímek obrazovky 2020-04-03 v 17 32 27](https://user-images.githubusercontent.com/4738758/78378521-5f8e5700-75d1-11ea-88d5-ae217a67dfe1.png) New better design: ![Snímek obrazovky 2020-04-03 v 17 33 11](https://user-images.githubusercontent.com/4738758/78378534-661cce80-75d1-11ea-8a64-23524d8d0f40.png) Thanks.

- bug fix? yes/no - new feature? yes/no - BC break? yes Hi, is this bug or feature? Use case: I have user role `admin` which has everything enabled by...

- bug report? no - feature request? yes - version: 3.0 Few times I wanted to use own `User` implementation, bt there is no simple way how to force Nette...

I use everywhere enums for roles/resources/privileges in php 8.1. it's better for maintenance than strings. ```php enum Roles: string implements Role { case EDITOR = 'editor'; public function getRoleId(): string...

We use custom authenticators (independent on `Nette\Security\Authenticator` interface) which produce instances of `Nette\Security\IIdentity` so that it can be used for `User#login($identity)` afterwards. Inside of the identity, there is an object...

Version: 3.1.0-3.1.3 ### Bug Description IIdentity claims to have a method getData() (https://github.com/nette/security/blob/v3.1.3/src/Security/IIdentity.php#L15), but the method itself is being commented. Result is PHPStorm is constantly complaining about getData not being...

### Bug Description I am unable to login to Nette forums. As I cannot find anyway to contact anyone I have raised an issue here in github.

- bug fix / new feature? 🤷‍♂️ - BC break? no - doc PR: n/a ref https://forum.nette.org/en/35470-let-s-talk-about-cookie-storage#p221533

Hi, interface Nette\Security\Authenticator has two string parameters: $user and $password. The name of the parameter $user may led to naming confusion in this cases: a) with Nette\Security\User which is by...