check for blacklisted file certificate filenames

This commit is contained in:
Robin Appelman 2014-08-21 14:09:40 +02:00
parent 2fcedcc503
commit e64aa330fd
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class CertificateManager implements ICertificateManager {
* @return bool | \OCP\ICertificate
*/
public function addCertificate($certificate, $name) {
if (!\OC\Files\Filesystem::isValidPath($name)) {
if (!Filesystem::isValidPath($name) or Filesystem::isFileBlacklisted($name)) {
return false;
}
$isValid = openssl_pkey_get_public($certificate);