uawdijnntqw1x1x1
IP : 216.73.217.142
Hostname : localhost.localdomain
Kernel : Linux localhost.localdomain 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
consult-e-syn
/
public_html
/
c1c92
/
..
/
cli
/
.
/
akeeba-altbackup.php
/
/
<?php /** * @package akeebabackup * @copyright Copyright (c)2006-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ use Akeeba\Engine\Platform; // Enable and include Akeeba Engine define('AKEEBAENGINE', 1); // Setup and import the base CLI script $minphp = '7.2.0'; // Boilerplate -- START define('_JEXEC', 1); foreach ([__DIR__, getcwd()] as $curdir) { if (file_exists($curdir . '/defines.php')) { define('JPATH_BASE', realpath($curdir . '/..')); require_once $curdir . '/defines.php'; break; } if (file_exists($curdir . '/../includes/defines.php')) { define('JPATH_BASE', realpath($curdir . '/..')); require_once $curdir . '/../includes/defines.php'; break; } } defined('JPATH_LIBRARIES') || die ('This script must be placed in or run from the cli folder of your site.'); require_once JPATH_LIBRARIES . '/fof40/Cli/Application.php'; // Boilerplate -- END // Load the version file require_once JPATH_ADMINISTRATOR . '/components/com_akeeba/version.php'; // Set up the cacert.pem location $caCertPath = class_exists('\\Composer\\CaBundle\\CaBundle') ? \Composer\CaBundle\CaBundle::getBundledCaBundlePath() : JPATH_LIBRARIES . '/src/Http/Transport/cacert.pem'; define('AKEEBA_CACERT_PEM', $caCertPath); /** * Akeeba Backup CLI application */ class AkeebaBackupAltCLI extends FOFApplicationCLI { /** * When making HTTPS connections, should we verify the certificate validity and that the hostname matches the one * in the certificate? Turned on by default. You can disable with the --no-verify CLI option. * * @var bool */ private $verifySSL = true; public function doExecute() { // Has the user set the --no-verify option? $noVerifyValue = $this->input->get('no-verify', 999); $this->verifySSL = $noVerifyValue != 999; // Get the backup profile and description $profile = $this->input->get('profile', 1, 'int'); if ($profile <= 0) { $profile = 1; } $version = AKEEBA_VERSION; $date = AKEEBA_DATE; $quietMode = $this->input->get('quiet', -1, 'int'); if ($quietMode == -1) { $year = gmdate('Y'); echo <<<ENDBLOCK Akeeba Backup Alternate CRON Helper Script version $version ($date) Copyright (c) 2006-$year Akeeba Ltd / Nicholas K. Dionysopoulos ------------------------------------------------------------------------------- Akeeba Backup is Free Software, distributed under the terms of the GNU General Public License version 3 or, at your option, any later version. This program comes with ABSOLUTELY NO WARRANTY as per sections 15 & 16 of the license. See http://www.gnu.org/licenses/gpl-3.0.html for details. ------------------------------------------------------------------------------- ENDBLOCK; } if (function_exists('set_time_limit')) { if ($quietMode == -1) { echo "Unsetting time limit restrictions.\n"; } @set_time_limit(0); } else { if ($quietMode == -1) { echo "Could not unset time limit restrictions; you may get a timeout error\n"; } } if ($quietMode == -1) { echo "\n"; } // Log some paths if ($quietMode == -1) { echo "Site paths determined by this script:\n"; echo "JPATH_BASE : " . JPATH_BASE . "\n"; echo "JPATH_ADMINISTRATOR : " . JPATH_ADMINISTRATOR . "\n\n"; } if (class_exists('Joomla\CMS\Component\ComponentHelper') && \Joomla\CMS\Component\ComponentHelper::isEnabled('com_akeebabackup')) { echo "ERROR!\n"; echo "Please finish upgrading to Akeeba Backup 9 and uninstall Akeeba Backup 8\n"; echo "per the instructions shown on your site's backend, Components, Akeeba Backup\n"; echo "\n"; echo "This script will refuse to continue.\n"; die("\n"); } // Load the engine $factoryPath = JPATH_ADMINISTRATOR . '/components/com_akeeba/BackupEngine/Factory.php'; define('JPATH_COMPONENT_ADMINISTRATOR', JPATH_ADMINISTRATOR . '/components/com_akeeba'); if (!file_exists($factoryPath)) { echo "ERROR!\n"; echo "Could not load the backup engine; file does not exist. Technical information:\n"; echo "Path to " . basename(__FILE__) . ": " . __DIR__ . "\n"; echo "Path to factory file: $factoryPath\n"; die("\n"); } else { try { require_once $factoryPath; } catch (Exception $e) { echo "ERROR!\n"; echo "Backup engine returned an error. Technical information:\n"; echo "Error message:\n\n"; echo $e->getMessage() . "\n\n"; echo "Path to " . basename(__FILE__) . ":" . __DIR__ . "\n"; echo "Path to factory file: $factoryPath\n"; die("\n"); } } $startup_check = true; // Assign the correct platform Platform::addPlatform('joomla3x', JPATH_COMPONENT_ADMINISTRATOR . '/BackupPlatform/Joomla3x'); // Get the live site's URL $url = Platform::getInstance()->get_platform_configuration_option('siteurl', ''); if (empty($url)) { echo <<<ENDTEXT ERROR: This script could not detect your live site's URL. Please visit Akeeba Backup's Control Panel page at least once before running this script, so that this information can be stored for use by this script. ENDTEXT; $startup_check = false; } // Get the front-end backup settings $frontend_enabled = Platform::getInstance()->get_platform_configuration_option('akeebabackup', 'legacyapi_enabled'); $secret = Platform::getInstance()->get_platform_configuration_option('frontend_secret_word', ''); if (!$frontend_enabled) { echo <<<ENDTEXT ERROR: Your Akeeba Backup installation's front-end backup feature is currently disabled. Please log in to your site's back-end as a Super User, go to Akeeba Backup's Control Panel, click on the Options icon in the top right corner and enable the front-end backup feature. Do not forget to also set a Secret Word! ENDTEXT; $startup_check = false; } elseif (empty($secret)) { echo <<<ENDTEXT ERROR: You have enabled the front-end backup feature, but you forgot to set a secret word. Without a valid secret word this script can not continue. Please log in to your site's back-end as a Super Administrator, go to Akeeba Backup's Control Panel, click on the Options icon in the top right corner set a Secret Word. ENDTEXT; $startup_check = false; } // Detect cURL or fopen URL $method = null; if (function_exists('curl_init')) { $method = 'curl'; } elseif (function_exists('fsockopen')) { $method = 'fsockopen'; } if (empty($method)) { if (function_exists('ini_get')) { if (ini_get('allow_url_fopen')) { $method = 'fopen'; } } } $overridemethod = $this->input->get('method', '', 'cmd'); if (!empty($overridemethod)) { $method = $overridemethod; } if (empty($method)) { echo <<<ENDTEXT ERROR: Could not find any supported method for running the front-end backup feature of Akeeba Backup. Please check with your host that at least one of the following features are supported in your PHP configuration: 1. The cURL extension 2. The fsockopen() function 3. The fopen() URL wrappers, i.e. allow_url_fopen is enabled If neither method is available you will not be able to backup your site using this CRON helper script. ENDTEXT; $startup_check = false; } if (!$startup_check) { echo "\n\nBACKUP ABORTED DUE TO CONFIGURATION ERRORS\n\n"; $this->close(255); } echo <<<ENDBLOCK Starting a new backup with the following parameters: Profile ID : $profile Backup Method : $method ENDBLOCK; // Perform the backup $url = rtrim($url, '/'); $secret = urlencode($secret); $url .= "/index.php?option=com_akeeba&view=Backup&key={$secret}&noredirect=1&profile=$profile"; $prototypeURL = ''; $inLoop = true; $step = 0; $timestamp = date('Y-m-d H:i:s'); echo "[{$timestamp}] Beginning backing up\n"; while ($inLoop) { $timestamp = date('Y-m-d H:i:s'); $result = $this->fetchURL($url, $method); //echo "[{$timestamp}] Got $result\n"; if (empty($result) || ($result === false)) { echo "[{$timestamp}] No message received\n"; echo <<<ENDTEXT ERROR: Your backup attempt has timed out, or a fatal PHP error has occurred. Please check the backup log and your server's error log for more information. Backup failed. ENDTEXT; $this->close(100); } elseif (strpos($result, '301 More work required') !== false) { // Extract the backup ID $backupId = null; $startPos = strpos($result, 'BACKUPID ###'); $endPos = false; if ($startPos !== false) { $endPos = strpos($result, '###', $startPos + 11); } if ($endPos !== false) { $backupId = substr($result, $startPos + 12, $endPos - $startPos - 12); } // Construct the new URL and access it if ($step == 0) { $prototypeURL = $url; } $step++; $url = $prototypeURL . '&task=step&step=' . $step; if (!is_null($backupId)) { $url .= '&backupid=' . urlencode($backupId); } echo "[{$timestamp}] Backup progress signal received\n"; } elseif (strpos($result, '200 OK') !== false) { echo "[{$timestamp}] Backup finalization message received\n"; echo <<<ENDTEXT Your backup has finished successfully. Please review your backup log file for any warning messages. If you see any such messages, please make sure that your backup is working properly by trying to restore it on a local server. ENDTEXT; $this->close(0); } elseif (strpos($result, '500 ERROR -- ') !== false) { // Backup error echo "[{$timestamp}] Error signal received\n"; echo <<<ENDTEXT ERROR: A backup error has occurred. The server's response was: $result Backup failed. ENDTEXT; $this->close(2); } elseif (strpos($result, '403 ') !== false) { // This should never happen: invalid authentication or front-end backup disabled echo "[{$timestamp}] Connection denied (403) message received\n"; echo <<<ENDTEXT ERROR: The server denied the connection. Please make sure that the front-end backup feature is enabled and a valid secret word is in place. Server response: $result Backup failed. ENDTEXT; $this->close(103); } else { // Unknown result?! echo "[{$timestamp}] Could not parse the server response.\n"; echo <<<ENDTEXT ERROR: We could not understand the server's response. Most likely a backup error has occurred. The server's response was: $result If you do not see "200 OK" at the end of this output, the backup has failed. ENDTEXT; $this->close(1); } } } /** * Fetches a remote URL using curl, fsockopen or fopen * * @param string $url The remote URL to fetch * @param string $method The method to use: curl, fsockopen or fopen (optional) * * @return string The contents of the URL which was fetched */ private function fetchURL($url, $method = 'curl') { switch ($method) { case 'curl': $caCertPath = class_exists('\\Composer\\CaBundle\\CaBundle') ? \Composer\CaBundle\CaBundle::getBundledCaBundlePath() : JPATH_LIBRARIES . '/src/Http/Transport/cacert.pem'; $ch = curl_init($url); if (file_exists($caCertPath)) { @curl_setopt($ch, CURLOPT_CAINFO, $caCertPath); } @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); @curl_setopt($ch, CURLOPT_FRESH_CONNECT, true); @curl_setopt($ch, CURLOPT_HEADER, false); @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $this->verifySSL); @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $this->verifySSL ? 2 : 0); @curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 180); @curl_setopt($ch, CURLOPT_TIMEOUT, 180); $result = curl_exec($ch); curl_close($ch); return $result; break; case 'fsockopen': $pos = strpos($url, '://'); $protocol = strtolower(substr($url, 0, $pos)); $req = substr($url, $pos + 3); $pos = strpos($req, '/'); if ($pos === false) { $pos = strlen($req); } $host = substr($req, 0, $pos); if (strpos($host, ':') !== false) { [$host, $port] = explode(':', $host); } else { $host = $host; $port = ($protocol == 'https') ? 443 : 80; } $uri = substr($req, $pos); if ($uri == '') { $uri = '/'; } $crlf = "\r\n"; $req = 'GET ' . $uri . ' HTTP/1.0' . $crlf . 'Host: ' . $host . $crlf . $crlf; $fp = fsockopen(($protocol == 'https' ? 'ssl://' : '') . $host, $port); fwrite($fp, $req); $response = ''; while (is_resource($fp) && $fp && !feof($fp)) { $response .= fread($fp, 1024); } fclose($fp); // split header and body $pos = strpos($response, $crlf . $crlf); if ($pos === false) { return ($response); } $header = substr($response, 0, $pos); $body = substr($response, $pos + 2 * strlen($crlf)); // parse headers $headers = []; $lines = explode($crlf, $header); foreach ($lines as $line) { if (($pos = strpos($line, ':')) !== false) { $headers[strtolower(trim(substr($line, 0, $pos)))] = trim(substr($line, $pos + 1)); } } //redirection? if (isset($headers['location'])) { return $this->fetchURL($headers['location'], $method); } else { return ($body); } break; case 'fopen': $opts = [ 'http' => [ 'method' => "GET", 'header' => "Accept-language: en\r\n", ], ]; $context = stream_context_create($opts); $result = @file_get_contents($url, false, $context); break; } return $result; } } // Instantiate and run the application FOFApplicationCLI::getInstance('AkeebaBackupAltCLI')->execute();
/var/www/consult-e-syn/public_html/c1c92/../cli/./akeeba-altbackup.php