Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge pull request #507 from nextcloud/run-le-script | Morris Jobke | 2016-07-21 | 11 | -14/+27 | |
|\ | | | | | Update emails and license headers with latest changes | |||||
| * | Fix others | Joas Schilling | 2016-07-21 | 11 | -14/+27 | |
| | | ||||||
* | | Merge pull request #480 from nextcloud/fix_ocs_response_format | Lukas Reschke | 2016-07-21 | 1 | -1/+1 | |
|\ \ | |/ |/| | AppFramework default response for OCS is xml | |||||
| * | AppFramework do not get default response | Roeland Jago Douma | 2016-07-20 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | The OCSResponse differs from other responses in that it defaults to XML. However we fell back to json by default. This makes sure that if nothing is set we don't pass anything. Which defaults then to the controllers default (which is often 'json') but in the case of the OCSResponse 'xml'. | |||||
* | | Merge pull request #479 from nextcloud/add-bruteforce-throttler | Lukas Reschke | 2016-07-21 | 1 | -14/+11 | |
|\ \ | |/ |/| | Implement brute force protection | |||||
| * | Implement brute force protection | Lukas Reschke | 2016-07-20 | 1 | -14/+11 | |
| | | | | | | | | | | | | | | | | | | Class Throttler implements the bruteforce protection for security actions in Nextcloud. It is working by logging invalid login attempts to the database and slowing down all login attempts from the same subnet. The max delay is 30 seconds and the starting delay are 200 milliseconds. (after the first failed login) | |||||
* | | Merge pull request #476 from nextcloud/port-same-site-cookies | Lukas Reschke | 2016-07-20 | 2 | -1/+46 | |
|\ \ | | | | | | | [master] Port Same-Site Cookies to master | |||||
| * | | [master] Port Same-Site Cookies to master | Lukas Reschke | 2016-07-20 | 2 | -1/+46 | |
| |/ | | | | | | | Fixes https://github.com/nextcloud/server/issues/50 | |||||
* / | Add OCSMiddleware to catch OCS exceptions | Roeland Jago Douma | 2016-07-20 | 1 | -0/+80 | |
|/ | | | | | | | * OCSException * OCSBadRequestException * OCSForbiddenException * OCSNotFoundException | |||||
* | add PasswordLoginForbiddenException | Christoph Wurst | 2016-06-17 | 1 | -2/+7 | |
| | ||||||
* | create session token on all APIs | Christoph Wurst | 2016-06-13 | 1 | -1/+1 | |
| | ||||||
* | use client login method on CORS routes | Christoph Wurst | 2016-06-08 | 1 | -6/+6 | |
| | ||||||
* | Update license headers | Lukas Reschke | 2016-05-26 | 8 | -8/+16 | |
| | ||||||
* | Fix inconsistent nameing of AppFramework | Roeland Jago Douma | 2016-04-22 | 5 | -12/+12 | |
| | ||||||
* | Move \OC\AppFramework to PSR-4 | Roeland Jago Douma | 2016-04-22 | 9 | -0/+797 | |
* Also moved the autoloader setup a bit up since we need it in initpaths |