check for blacklisted file certificate filenames

remotes/origin/fix-10825
Robin Appelman 12 years ago
parent 2fcedcc503
commit e64aa330fd
  1. 2
      lib/private/security/certificatemanager.php

@ -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);

Loading…
Cancel
Save