Skip to content

Commit

Permalink
fix(CORS): CORS should only be bypassed on PublicPage if not logged…
Browse files Browse the repository at this point in the history
… in to prevent CSRF attack vectors

Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
  • Loading branch information
susnux committed Jan 26, 2023
1 parent ad00a14 commit f3c3313
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function __construct(IRequest $request,
public function beforeController($controller, $methodName) {
// ensure that @CORS annotated API routes are not used in conjunction
// with session authentication since this enables CSRF attack vectors
if ($this->reflector->hasAnnotation('CORS') && !$this->reflector->hasAnnotation('PublicPage')) {
if ($this->reflector->hasAnnotation('CORS') && (!$this->reflector->hasAnnotation('PublicPage') || $this->session->isLoggedIn())) {
$user = array_key_exists('PHP_AUTH_USER', $this->request->server) ? $this->request->server['PHP_AUTH_USER'] : null;
$pass = array_key_exists('PHP_AUTH_PW', $this->request->server) ? $this->request->server['PHP_AUTH_PW'] : null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,17 @@ public function testCorsIgnoredIfWithCredentialsHeaderPresent() {
* @CORS
* @PublicPage
*/
public function testNoCORSShouldAllowCookieAuth() {
public function testNoCORSOnAnonymousPublicPage() {
$request = new Request(
[],
$this->createMock(IRequestId::class),
$this->createMock(IConfig::class)
);
$this->reflector->reflect($this, __FUNCTION__);
$middleware = new CORSMiddleware($request, $this->reflector, $this->session, $this->throttler);
$this->session->expects($this->once())
->method('isLoggedIn')
->willReturn(false);
$this->session->expects($this->never())
->method('logout');
$this->session->expects($this->never())
Expand All @@ -145,6 +148,30 @@ public function testNoCORSShouldAllowCookieAuth() {
$middleware->beforeController($this->controller, __FUNCTION__);
}

/**
* @CORS
* @PublicPage
*/
public function testCORSShouldNeverAllowCookieAuth() {
$request = new Request(
[],
$this->createMock(IRequestId::class),
$this->createMock(IConfig::class)
);
$this->reflector->reflect($this, __FUNCTION__);
$middleware = new CORSMiddleware($request, $this->reflector, $this->session, $this->throttler);
$this->session->expects($this->once())
->method('isLoggedIn')
->willReturn(true);
$this->session->expects($this->once())
->method('logout');
$this->session->expects($this->once())
->method('logClientIn')
->with($this->equalTo('user'), $this->equalTo('pass'))
->willReturn(true);
$middleware->beforeController($this->controller, __FUNCTION__);
}

/**
* @CORS
*/
Expand Down

0 comments on commit f3c3313

Please sign in to comment.