Browse Source

Merge pull request #33174 from nextcloud/fix/redirect-css-not-found

Do not redirect if requested font, style or script can not be found
tags/v25.0.0beta1
Vincent Petry 1 year ago
parent
commit
00a01a1f5b
No account linked to committer's email address
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      lib/base.php

+ 9
- 0
lib/base.php View File

@@ -1055,6 +1055,15 @@ class OC {
return;
}

// Handle resources that can't be found
// This prevents browsers from redirecting to the default page and then
// attempting to parse HTML as CSS and similar.
$destinationHeader = $request->getHeader('Sec-Fetch-Dest');
if (in_array($destinationHeader, ['font', 'script', 'style'])) {
http_response_code(404);
return;
}

// Someone is logged in
if (\OC::$server->getUserSession()->isLoggedIn()) {
OC_App::loadApps();

Loading…
Cancel
Save