aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/AppFramework/Middleware/Security/Exceptions
Commit message (Collapse)AuthorAgeFilesLines
* feat(security): restrict admin actions to IP rangesBenjamin Gaussorgues2024-07-191-0/+23
| | | | Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* feat(AppFramework): Add ExAppRequired attributeprovokateurin2024-07-011-0/+18
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-249-184/+25
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* feat(appframework): Expose programmatic rate limiterChristoph Wurst2023-09-201-0/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* fix(security)!: Use consistent HTTP status for strict cookie checksChristoph Wurst2023-04-171-0/+3
| | | | | | | Before: 503/412 Now: 412 + json body explaining the error Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-049-14/+5
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Update license headers for 19Christoph Wurst2020-04-291-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-102-2/+2
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-059-9/+13
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Do not do redirect handling when loggin outRoeland Jago Douma2019-02-061-0/+29
| | | | | | | | | | | | | Fixes #12568 Since the clearing of the execution context causes another reload. We should not do the redirect_uri handling as this results in redirecting back to the logout page on login. This adds a simple middleware that will just check if the ClearExecutionContext session variable is set. If that is the case it will just redirect back to the login page. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Provide translated error message for permission errorMorris Jobke2018-02-261-1/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update license headersMorris Jobke2017-11-063-2/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Handle SameSiteCookie check for index.php in AppFramework MiddlewareRoeland Jago Douma2017-09-241-0/+38
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Allow to overwrite the message which we already do in SubadminMiddlewareJoas Schilling2016-12-081-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Introduce PasswordConfirmRequired annotationJoas Schilling2016-11-181-0/+37
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix othersJoas Schilling2016-07-216-9/+16
|
* [master] Port Same-Site Cookies to masterLukas Reschke2016-07-201-0/+36
| | | | Fixes https://github.com/nextcloud/server/issues/50
* Update license headersLukas Reschke2016-05-265-5/+9
|
* Fix inconsistent nameing of AppFrameworkRoeland Jago Douma2016-04-224-8/+8
|
* Move \OC\AppFramework to PSR-4Roeland Jago Douma2016-04-225-0/+184
* Also moved the autoloader setup a bit up since we need it in initpaths