mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
Merge pull request #45527 from nextcloud/backport/45014/stable27
This commit is contained in:
commit
d457d9f29f
1 changed files with 6 additions and 0 deletions
|
|
@ -59,6 +59,7 @@ use OCP\Files\Cache\ICacheEntry;
|
|||
use OCP\Files\ConnectionLostException;
|
||||
use OCP\Files\EmptyFileNameException;
|
||||
use OCP\Files\FileNameTooLongException;
|
||||
use OCP\Files\ForbiddenException;
|
||||
use OCP\Files\InvalidCharacterInPathException;
|
||||
use OCP\Files\InvalidDirectoryException;
|
||||
use OCP\Files\InvalidPathException;
|
||||
|
|
@ -731,6 +732,11 @@ class View {
|
|||
public function rename($source, $target) {
|
||||
$absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($source));
|
||||
$absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($target));
|
||||
|
||||
if (str_starts_with($absolutePath2, $absolutePath1 . '/')) {
|
||||
throw new ForbiddenException("Moving a folder into a child folder is forbidden", false);
|
||||
}
|
||||
|
||||
$result = false;
|
||||
if (
|
||||
Filesystem::isValidPath($target)
|
||||
|
|
|
|||
Loading…
Reference in a new issue