aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/security/SessionManagerTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Use PSR-3 logger for login attemptsArthurHoaro2020-10-201-2/+3
| | | | Fixes #1122
* Compatibility with PHPUnit 9ArthurHoaro2020-09-291-1/+1
|
* Comply with PHPUnit V8: setup/teardown functions must return voidArthurHoaro2020-09-261-2/+2
|
* Fix broken route to filter not tagged bookmarksArthurHoaro2020-08-311-6/+7
| | | | | | Also display the filter for visitors. Fixes #1529
* Process Shaarli install through Slim controllerArthurHoaro2020-07-231-9/+5
|
* Process session filters through Slim controllersArthurHoaro2020-07-231-0/+57
| | | | | | | Including: - visibility - links per page - untagged only
* Optimize and cleanup importsVirtualTam2019-01-131-2/+2
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* lint: apply phpcbf to tests/VirtualTam2018-12-021-1/+0
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Add test coverage for LoginManager methodsVirtualTam2018-06-021-1/+1
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* SessionManager: remove unused UID tokenVirtualTam2018-06-021-13/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | There already are dedicated tokens for: - CSRF protection - user stay-signed-in feature, via cookie This token was most likely intended as a randomly generated, server-side, secret key to be used when generating hashes. See http://sebsauvage.net/wiki/doku.php?id=php:session [FR] Relevant section: Une clé secrète unique aléatoire est générée côté serveur (et jamais envoyée). Elle peut servir pour signer les formulaires (HMAC) ou générer des token de formulaires (protection contre XSRF). Voir $_SESSION['uid']. Translation: A unique, server-side secret key is randomly generated (and never transmitted). It can be used to sign forms (HMAC) or generate form tokens (protection against XSRF). See $_SESSION['uid'] Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Refactor session and cookie timeout controlVirtualTam2018-06-021-22/+159
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Move LoginManager and SessionManager to the Security namespaceVirtualTam2018-06-021-0/+149
Signed-off-by: VirtualTam <virtualtam@flibidi.net>