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 /** * Foreign file with an accessible MediaWiki database * * @file * @ingroup FileRepo */ /** * Foreign file with an accessible MediaWiki database * * @ingroup FileRepo */ class ForeignDBFile extends LocalFile { /** * @param $title * @param $repo * @param $unused * @return ForeignDBFile */ static function newFromTitle( $title, $repo, $unused = null ) { return new self( $title, $repo ); } /** * Create a ForeignDBFile from a title * Do not call this except from inside a repo class. * * @param $row * @param $repo * * @return ForeignDBFile */ static function newFromRow( $row, $repo ) { $title = Title::makeTitle( NS_FILE, $row->img_name ); $file = new self( $title, $repo ); $file->loadFromRow( $row ); return $file; } function publish( $srcPath, $flags = 0 ) { $this->readOnlyError(); } function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '', $watch = false, $timestamp = false ) { $this->readOnlyError(); } function restore( $versions = array(), $unsuppress = false ) { $this->readOnlyError(); } function delete( $reason, $suppress = false ) { $this->readOnlyError(); } function move( $target ) { $this->readOnlyError(); } /** * @return string */ function getDescriptionUrl() { // Restore remote behaviour return File::getDescriptionUrl(); } /** * @return string */ function getDescriptionText() { // Restore remote behaviour return File::getDescriptionText(); } }