Skip to content

Commit 84ca625

Browse files
authored
Merge pull request #19 from anhofmann/master
don't expose sessionID to other domains
2 parents 5b75ebd + 548d895 commit 84ca625

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/UrlGeneratorService.php

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ private function addSid(string $url, ?\Illuminate\Routing\Route $route = null):
1313
return $url;
1414
}
1515

16+
// Don't expose sessionID to other Domains
17+
if(parse_url($url, PHP_URL_HOST) != parse_url(\Config::get('app.url'))) {
18+
return $url;
19+
}
20+
1621
// Get the current query string and parameters
1722
$queryString = parse_url($url, PHP_URL_QUERY) ?? '';
1823
parse_str($queryString, $queryParameters);

0 commit comments

Comments
 (0)