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 without associated database record * * @file * @ingroup FileRepo */ /** * A file object referring to either a standalone local file, or a file in a * local repository with no database, for example an FSRepo repository. * * Read-only. * * TODO: Currently it doesn't really work in the repository role, there are * lots of functions missing. It is used by the WebStore extension in the * standalone role. * * @ingroup FileRepo */ class UnregisteredLocalFile extends File { var $title, $path, $mime, $dims; /** * @var MediaHandler */ var $handler; /** * @param $path * @param $mime * @return UnregisteredLocalFile */ static function newFromPath( $path, $mime ) { return new UnregisteredLocalFile( false, false, $path, $mime ); } /** * @param $title * @param $repo * @return UnregisteredLocalFile */ static function newFromTitle( $title, $repo ) { return new UnregisteredLocalFile( $title, $repo, false, false ); } /** * @throws MWException * @param $title string * @param $repo FSRepo * @param $path string * @param $mime string */ function __construct( $title = false, $repo = false, $path = false, $mime = false ) { if ( !( $title && $repo ) && !$path ) { throw new MWException( __METHOD__.': not enough parameters, must specify title and repo, or a full path' ); } if ( $title ) { $this->title = $title; $this->name = $repo->getNameFromTitle( $title ); } else { $this->name = basename( $path ); $this->title = Title::makeTitleSafe( NS_FILE, $this->name ); } $this->repo = $repo; if ( $path ) { $this->path = $path; } else { $this->path = $repo->getRootDirectory() . '/' . $repo->getHashPath( $this->name ) . $this->name; } if ( $mime ) { $this->mime = $mime; } $this->dims = array(); } function getPageDimensions( $page = 1 ) { if ( !isset( $this->dims[$page] ) ) { if ( !$this->getHandler() ) { return false; } $this->dims[$page] = $this->handler->getPageDimensions( $this, $page ); } return $this->dims[$page]; } function getWidth( $page = 1 ) { $dim = $this->getPageDimensions( $page ); return $dim['width']; } function getHeight( $page = 1 ) { $dim = $this->getPageDimensions( $page ); return $dim['height']; } function getMimeType() { if ( !isset( $this->mime ) ) { $magic = MimeMagic::singleton(); $this->mime = $magic->guessMimeType( $this->path ); } return $this->mime; } function getImageSize( $filename ) { if ( !$this->getHandler() ) { return false; } return $this->handler->getImageSize( $this, $this->getPath() ); } function getMetadata() { if ( !isset( $this->metadata ) ) { if ( !$this->getHandler() ) { $this->metadata = false; } else { $this->metadata = $this->handler->getMetadata( $this, $this->getPath() ); } } return $this->metadata; } function getURL() { if ( $this->repo ) { return $this->repo->getZoneUrl( 'public' ) . '/' . $this->repo->getHashPath( $this->name ) . rawurlencode( $this->name ); } else { return false; } } function getSize() { if ( file_exists( $this->path ) ) { return filesize( $this->path ); } else { return false; } } }