yosai icon indicating copy to clipboard operation
yosai copied to clipboard

A Security Framework for Python applications featuring Authorization (rbac permissions and roles), Authentication (2fa totp), Session Management and an extensive Audit Trail

Results 8 yosai issues
Sort by recently updated
recently updated
newest added

I've been trying to get this working and I think you have some issues with breaking changes in your dependencies. Right now I am stuck with the CBOR serializer not...

Line 123-125: ``` if self.targets != {self.WILDCARD_TOKEN}: if not self.actions >= permission.actions: return False ``` This appears to be a copy+paste error. Line 124 is evaluating the `actions` part of...

Line 149: `the_parts = json.loads(assigned.decode('utf-8'))` Running python 3.7, this raise an exception for me. Strings in py3 are automatically unicode, so the `.decode('utf-8')` call is not valid and raises an...

"Could not clear authc_info from cache" error had the variable as `identifiers` instead of `identifier` which lead to a `NameError`, when there's no cache

From what I investigated, the user is not being kept logged in between accesses to the pages. I am running `Yosai==0.3.2` and I'm making use of the web component. I've...

https://www.sourceclear.com/vulnerability-database/security/remote-code-execution-rce-/python/sid-6866

enhancement

Is this project still being actively developed? Seems like its been a year since last commit. Just wondering, thanks!

Several issues in `tox.ini`: - it wants to install `requirements.txt` but there is no such file - `python -m py.test` should be replaced with `pytest` At this point I get...