Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-5375: Fixed an open redirect in the project switch functionality. · mosparo/mosparo@9d5da36

Open Redirect in GitHub repository mosparo/mosparo prior to 1.0.2.

CVE
#git

Expand Up

@@ -394,7 +394,7 @@ public function switch(Request $request, Project $project): Response

// Redirect back to the originally requested path

$targetPath = $request->query->get('targetPath’, false);

if ($targetPath) {

if ($targetPath && $this->isLocalUrl($request, $targetPath)) {

return $this->redirect($targetPath);

}

Expand All

@@ -411,4 +411,22 @@ protected function setActiveProject(Request $request, Project $project): bool

return true;

}

protected function isLocalUrl(Request $request, $url): bool

{

// If the first character is a slash, the URL is relative (only the path) and is local

if (str_starts_with($url, ‘/’)) {

return true;

}

// If the URL is absolute but starts with the host of mosparo, we can redirect it.

// Add the slash to prevent a redirect when a similar top-level domain is used.

// For example, mosparo.com should not allow a redirect to mosparo.com.au

if (str_starts_with($url, $request->getSchemeAndHttpHost() . ‘/’)) {

return true;

}

// The URL does not match the two checks because it’s an external URL; no redirect in that case.

return false;

}

}

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907