Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
lib /
private /
Files /
Node /
Delete
Unzip
Name
Size
Permission
Date
Action
File.php
3.62
KB
-rw-r--r--
2018-04-19 18:15
Folder.php
9.45
KB
-rw-r--r--
2018-04-19 18:15
HookConnector.php
4.94
KB
-rw-r--r--
2018-04-19 18:15
LazyRoot.php
8.64
KB
-rw-r--r--
2018-04-19 18:15
Node.php
10.03
KB
-rw-r--r--
2018-04-19 18:15
NonExistingFile.php
2.88
KB
-rw-r--r--
2018-04-19 18:15
NonExistingFolder.php
3.42
KB
-rw-r--r--
2018-04-19 18:15
Root.php
7.77
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Joas Schilling <coding@schilljs.com> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <icewind@owncloud.com> * @author Roeland Jago Douma <rullzer@owncloud.com> * @author Thomas Müller <thomas.mueller@tmit.eu> * @author Vincent Petry <pvince81@owncloud.com> * * @copyright Copyright (c) 2018, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OC\Files\Node; use OCP\Files\NotPermittedException; class File extends Node implements \OCP\Files\File { /** * Creates a Folder that represents a non-existing path * * @param string $path path * @return string non-existing node class */ protected function createNonExistingNode($path) { return new NonExistingFile($this->root, $this->view, $path); } /** * @return string * @throws \OCP\Files\NotPermittedException */ public function getContent() { if ($this->checkPermissions(\OCP\Constants::PERMISSION_READ)) { /** * @var \OC\Files\Storage\Storage $storage; */ return $this->view->file_get_contents($this->path); } else { throw new NotPermittedException(); } } /** * @param string $data * @throws \OCP\Files\NotPermittedException */ public function putContent($data) { if ($this->checkPermissions(\OCP\Constants::PERMISSION_UPDATE)) { $this->sendHooks(['preWrite']); $this->view->file_put_contents($this->path, $data); $this->fileInfo = null; $this->sendHooks(['postWrite']); } else { throw new NotPermittedException(); } } /** * @param string $mode * @return resource * @throws \OCP\Files\NotPermittedException */ public function fopen($mode) { $preHooks = []; $postHooks = []; $requiredPermissions = \OCP\Constants::PERMISSION_READ; switch ($mode) { case 'r+': case 'rb+': case 'w+': case 'wb+': case 'x+': case 'xb+': case 'a+': case 'ab+': case 'w': case 'wb': case 'x': case 'xb': case 'a': case 'ab': $preHooks[] = 'preWrite'; $postHooks[] = 'postWrite'; $requiredPermissions |= \OCP\Constants::PERMISSION_UPDATE; break; } if ($this->checkPermissions($requiredPermissions)) { $this->sendHooks($preHooks); $result = $this->view->fopen($this->path, $mode); $this->sendHooks($postHooks); return $result; } else { throw new NotPermittedException(); } } public function delete() { if ($this->checkPermissions(\OCP\Constants::PERMISSION_DELETE)) { $this->sendHooks(['preDelete']); $fileInfo = $this->getFileInfo(); $this->view->unlink($this->path); $nonExisting = new NonExistingFile($this->root, $this->view, $this->path, $fileInfo); $this->root->emit('\OC\Files', 'postDelete', [$nonExisting]); $this->exists = false; $this->fileInfo = null; } else { throw new NotPermittedException(); } } /** * @param string $type * @param bool $raw * @return string */ public function hash($type, $raw = false) { return $this->view->hash($type, $this->path, $raw); } /** * @inheritdoc */ public function getChecksum() { return $this->getFileInfo()->getChecksum(); } }