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 /
paroquia-rm.bak.2 /
libraries /
src /
Updater /
Delete
Unzip
Name
Size
Permission
Date
Action
Adapter
[ DIR ]
drwxr-xr-x
2017-09-19 09:00
DownloadSource.php
1.46
KB
-rw-r--r--
2018-06-26 10:27
Update.php
12.28
KB
-rw-r--r--
2018-06-26 10:27
UpdateAdapter.php
7.29
KB
-rw-r--r--
2018-06-26 10:27
Updater.php
11.12
KB
-rw-r--r--
2018-06-26 10:27
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Updater; defined('JPATH_PLATFORM') or die; /** * Data object representing a download source given as part of an update's `<downloads>` element * * @since 3.8.3 */ class DownloadSource { /** * Defines a BZIP2 download package * * @const string * @since 3.8.4 */ const FORMAT_TAR_BZIP = 'bz2'; /** * Defines a TGZ download package * * @const string * @since 3.8.4 */ const FORMAT_TAR_GZ = 'gz'; /** * Defines a ZIP download package * * @const string * @since 3.8.3 */ const FORMAT_ZIP = 'zip'; /** * Defines a full package download type * * @const string * @since 3.8.3 */ const TYPE_FULL = 'full'; /** * Defines a patch package download type * * @const string * @since 3.8.4 */ const TYPE_PATCH = 'patch'; /** * Defines an upgrade package download type * * @const string * @since 3.8.4 */ const TYPE_UPGRADE = 'upgrade'; /** * The download type * * @var string * @since 3.8.3 */ public $type = self::TYPE_FULL; /** * The download file's format * * @var string * @since 3.8.3 */ public $format = self::FORMAT_ZIP; /** * The URL to retrieve the package from * * @var string * @since 3.8.3 */ public $url; }