Page MenuHomePhabricator

D7631.id.diff
No OneTemporary

D7631.id.diff

Index: src/applications/repository/storage/PhabricatorRepository.php
===================================================================
--- src/applications/repository/storage/PhabricatorRepository.php
+++ src/applications/repository/storage/PhabricatorRepository.php
@@ -580,14 +580,10 @@
// Make sure we don't leak anything if this repo is using HTTP Basic Auth
// with the credentials in the URI or something zany like that.
- if ($uri instanceof PhutilGitURI) {
- if (!$this->getDetail('show-user', false)) {
- $uri->setUser(null);
- }
- } else {
- if (!$this->getDetail('show-user', false)) {
- $uri->setUser(null);
- }
+ // If repository is not accessed over SSH we remove both username and
+ // password.
+ if (!$this->shouldUseSSH()) {
+ $uri->setUser(null);
$uri->setPass(null);
}

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 22, 5:15 PM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7227226
Default Alt Text
D7631.id.diff (871 B)

Event Timeline