aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-02-16 13:16:52 +0100
committerLukas Reschke <lukas@owncloud.com>2016-02-18 11:18:36 +0100
commit9b3c4e8dc453a674c0f1aee8c60e9d7f24b34e49 (patch)
treef8596a0490e5fa72a382233d9ed72606fc79e669 /apps/dav/lib
parent3a97a0ad7fa14b803c2ecb55faf24607011eae6e (diff)
downloadnextcloud-server-9b3c4e8dc453a674c0f1aee8c60e9d7f24b34e49.tar.gz
nextcloud-server-9b3c4e8dc453a674c0f1aee8c60e9d7f24b34e49.zip
Require CSRF token for non WebDAV authenticated requests
Diffstat (limited to 'apps/dav/lib')
-rw-r--r--apps/dav/lib/connector/sabre/auth.php37
-rw-r--r--apps/dav/lib/dav/sharing/plugin.php17
-rw-r--r--apps/dav/lib/server.php3
3 files changed, 19 insertions, 38 deletions
diff --git a/apps/dav/lib/connector/sabre/auth.php b/apps/dav/lib/connector/sabre/auth.php
index a046e078482..4bb07c5f0ed 100644
--- a/apps/dav/lib/connector/sabre/auth.php
+++ b/apps/dav/lib/connector/sabre/auth.php
@@ -30,6 +30,7 @@
namespace OCA\DAV\Connector\Sabre;
use Exception;
+use OCP\IRequest;
use OCP\ISession;
use OCP\IUserSession;
use Sabre\DAV\Auth\Backend\AbstractBasic;
@@ -45,17 +46,22 @@ class Auth extends AbstractBasic {
private $session;
/** @var IUserSession */
private $userSession;
+ /** @var IRequest */
+ private $request;
/**
* @param ISession $session
* @param IUserSession $userSession
+ * @param IRequest $request
* @param string $principalPrefix
*/
public function __construct(ISession $session,
IUserSession $userSession,
+ IRequest $request,
$principalPrefix = 'principals/users/') {
$this->session = $session;
$this->userSession = $userSession;
+ $this->request = $request;
$this->principalPrefix = $principalPrefix;
}
@@ -107,26 +113,6 @@ class Auth extends AbstractBasic {
}
/**
- * Returns information about the currently logged in username.
- *
- * If nobody is currently logged in, this method should return null.
- *
- * @return string|null
- */
- public function getCurrentUser() {
- $user = $this->userSession->getUser() ? $this->userSession->getUser()->getUID() : null;
- if($user !== null && $this->isDavAuthenticated($user)) {
- return $user;
- }
-
- if($user !== null && is_null($this->session->get(self::DAV_AUTHENTICATED))) {
- return $user;
- }
-
- return null;
- }
-
- /**
* @param RequestInterface $request
* @param ResponseInterface $response
* @return array
@@ -150,8 +136,19 @@ class Auth extends AbstractBasic {
* @param RequestInterface $request
* @param ResponseInterface $response
* @return array
+ * @throws NotAuthenticated
*/
private function auth(RequestInterface $request, ResponseInterface $response) {
+ // If request is not GET and not authenticated via WebDAV a requesttoken is required
+ if($this->userSession->isLoggedIn() &&
+ $this->request->getMethod() !== 'GET' &&
+ !$this->isDavAuthenticated($this->userSession->getUser()->getUID())) {
+ if(!$this->request->passesCSRFCheck()) {
+ $response->setStatus(401);
+ throw new \Sabre\DAV\Exception\NotAuthenticated('CSRF check not passed.');
+ }
+ }
+
if (\OC_User::handleApacheAuth() ||
//Fix for broken webdav clients
($this->userSession->isLoggedIn() && is_null($this->session->get(self::DAV_AUTHENTICATED))) ||
diff --git a/apps/dav/lib/dav/sharing/plugin.php b/apps/dav/lib/dav/sharing/plugin.php
index f6e2cceebd9..e6eab3539b3 100644
--- a/apps/dav/lib/dav/sharing/plugin.php
+++ b/apps/dav/lib/dav/sharing/plugin.php
@@ -129,9 +129,6 @@ class Plugin extends ServerPlugin {
return;
}
- // CSRF protection
- $this->protectAgainstCSRF();
-
$requestBody = $request->getBodyAsString();
// If this request handler could not deal with this POST request, it
@@ -201,18 +198,4 @@ class Plugin extends ServerPlugin {
}
}
- private function protectAgainstCSRF() {
- $user = $this->auth->getCurrentUser();
- if ($this->auth->isDavAuthenticated($user)) {
- return true;
- }
-
- if ($this->request->passesCSRFCheck()) {
- return true;
- }
-
- throw new BadRequest();
- }
-
-
}
diff --git a/apps/dav/lib/server.php b/apps/dav/lib/server.php
index f5f1875a480..ed1ee684049 100644
--- a/apps/dav/lib/server.php
+++ b/apps/dav/lib/server.php
@@ -53,7 +53,8 @@ class Server {
// Backends
$authBackend = new Auth(
\OC::$server->getSession(),
- \OC::$server->getUserSession()
+ \OC::$server->getUserSession(),
+ \OC::$server->getRequest()
);
// Set URL explicitly due to reverse-proxy situations