Skip to content

Commit 430eeae

Browse files
authored
Merge pull request #62842 from nextcloud/backport/62806/stable26
[stable26] fix: clear key password after loading key
2 parents 44116d2 + 80f4df8 commit 430eeae

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

apps/files_external/lib/Lib/Auth/PublicKey/RSA.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = n
6767
throw new \RuntimeException('unable to load private key');
6868
}
6969
}
70+
$auth->setPassword('');
7071
$storage->setBackendOption('public_key_auth', $auth);
7172
}
7273

apps/files_external/lib/Lib/Auth/PublicKey/RSAPrivateKey.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = n
6464
throw new \RuntimeException('unable to load private key');
6565
}
6666
}
67+
68+
$auth->setPassword('');
6769
$storage->setBackendOption('public_key_auth', $auth);
6870
}
6971
}

0 commit comments

Comments
 (0)