Avoid sending Authorization header to another domain on redirect, fixes #6716
parent
0de1e21233
commit
128e424c90
|
@ -247,6 +247,17 @@ class RemoteFilesystem
|
||||||
unset($tempAdditionalOptions);
|
unset($tempAdditionalOptions);
|
||||||
$userlandFollow = isset($options['http']['follow_location']) && !$options['http']['follow_location'];
|
$userlandFollow = isset($options['http']['follow_location']) && !$options['http']['follow_location'];
|
||||||
|
|
||||||
|
if ($isRedirect && $this->io->hasAuthentication($this->originUrl)) {
|
||||||
|
// Redirecting away from originUrl domain? Then remove the auth headers.
|
||||||
|
$redirectHost = parse_url($this->fileUrl, PHP_URL_HOST);
|
||||||
|
if ($this->originUrl != $redirectHost && stripos($redirectHost, '.' . $this->originUrl) === false) {
|
||||||
|
// Strip off authentication
|
||||||
|
$options['http']['header'] = array_filter($options['http']['header'], function($value){
|
||||||
|
return stripos($value, 'Authorization') !== 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$origFileUrl = $fileUrl;
|
$origFileUrl = $fileUrl;
|
||||||
|
|
||||||
if (isset($options['github-token'])) {
|
if (isset($options['github-token'])) {
|
||||||
|
@ -744,10 +755,6 @@ class RemoteFilesystem
|
||||||
$headers[] = 'Connection: close';
|
$headers[] = 'Connection: close';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($userlandFollow)) {
|
|
||||||
$options['http']['follow_location'] = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->io->hasAuthentication($originUrl)) {
|
if ($this->io->hasAuthentication($originUrl)) {
|
||||||
$auth = $this->io->getAuthentication($originUrl);
|
$auth = $this->io->getAuthentication($originUrl);
|
||||||
if ('github.com' === $originUrl && 'x-oauth-basic' === $auth['password']) {
|
if ('github.com' === $originUrl && 'x-oauth-basic' === $auth['password']) {
|
||||||
|
@ -768,6 +775,11 @@ class RemoteFilesystem
|
||||||
$authStr = base64_encode($auth['username'] . ':' . $auth['password']);
|
$authStr = base64_encode($auth['username'] . ':' . $auth['password']);
|
||||||
$headers[] = 'Authorization: Basic '.$authStr;
|
$headers[] = 'Authorization: Basic '.$authStr;
|
||||||
}
|
}
|
||||||
|
$userlandFollow = true; // always perform userland follow (to be able to change headers when redirected)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($userlandFollow)) {
|
||||||
|
$options['http']['follow_location'] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($options['http']['header']) && !is_array($options['http']['header'])) {
|
if (isset($options['http']['header']) && !is_array($options['http']['header'])) {
|
||||||
|
|
Loading…
Reference in New Issue