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 /
wiki.bernardino.org /
includes /
filerepo /
Delete
Unzip
Name
Size
Permission
Date
Action
file
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
ArchivedFile.php
8.9
KB
-rw-r--r--
2011-03-14 02:04
FSRepo.php
2.49
KB
-rw-r--r--
2016-11-28 20:20
File.php
38.33
KB
-rw-r--r--
2011-12-26 00:57
FileBackendDBRepoWrapper.php
10.37
KB
-rw-r--r--
2016-11-28 20:20
FileRepo.php
56.09
KB
-rw-r--r--
2016-11-28 20:20
FileRepoStatus.php
1.01
KB
-rw-r--r--
2016-11-28 20:20
ForeignAPIFile.php
5.84
KB
-rw-r--r--
2011-07-07 00:07
ForeignAPIRepo.php
16.35
KB
-rw-r--r--
2016-11-28 20:20
ForeignDBFile.php
1.48
KB
-rw-r--r--
2011-05-28 19:51
ForeignDBRepo.php
3.51
KB
-rw-r--r--
2016-11-28 20:20
ForeignDBViaLBRepo.php
2.79
KB
-rw-r--r--
2016-11-28 20:20
LocalFile.php
61.5
KB
-rw-r--r--
2011-11-09 17:06
LocalRepo.php
16
KB
-rw-r--r--
2016-11-28 20:20
NullRepo.php
1.15
KB
-rw-r--r--
2016-11-28 20:20
OldLocalFile.php
7.49
KB
-rw-r--r--
2011-11-09 17:06
README
1.93
KB
-rw-r--r--
2016-11-28 20:20
RepoGroup.php
12.08
KB
-rw-r--r--
2016-11-28 20:20
UnregisteredLocalFile.php
3.14
KB
-rw-r--r--
2011-05-28 20:59
Save
Rename
<?php /** * File repository with no files. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file * @ingroup FileRepo */ /** * File repository with no files, for performance testing * @ingroup FileRepo */ class NullRepo extends FileRepo { /** * @param array|null $info */ function __construct( $info ) { } protected function assertWritableRepo() { throw new MWException( get_class( $this ) . ': write operations are not supported.' ); } }