GRAYBYTE WORDPRESS FILE MANAGER2478

Server IP : 162.213.255.40 / Your IP : 216.73.216.121
System : Linux server146.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF

HOME

/home/hellrfbn/public_html/wp-content/plugins/updraftplus/includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/hellrfbn/public_html/wp-content/plugins/updraftplus/includes//class-partialfileservlet.php
<?php

// https://stackoverflow.com/questions/157318/resumable-downloads-when-using-php-to-send-the-file
// User: DaveRandom

if (!class_exists('UpdraftPlus_NonExistentFileException')):
class UpdraftPlus_NonExistentFileException extends RuntimeException {}
endif;

if (!class_exists('UpdraftPlus_UnreadableFileException')):
class UpdraftPlus_UnreadableFileException extends RuntimeException {}
endif;

if (!class_exists('UpdraftPlus_UnsatisfiableRangeException')):
class UpdraftPlus_UnsatisfiableRangeException extends RuntimeException {}
endif;

if (!class_exists('UpdraftPlus_InvalidRangeHeaderException')):
class UpdraftPlus_InvalidRangeHeaderException extends RuntimeException {}
endif;

class UpdraftPlus_RangeHeader
{
	/**
	 * The first byte in the file to send (0-indexed), a null value indicates the last
	 * $end bytes
	 *
	 * @var int|null
	 */
	private $firstByte;

	/**
	 * The last byte in the file to send (0-indexed), a null value indicates $start to
	 * EOF
	 *
	 * @var int|null
	 */
	private $lastByte;

	/**
	 * Create a new instance from a Range header string
	 *
	 * @param string $header
	 * @return UpdraftPlus_RangeHeader
	 */
	public static function createFromHeaderString($header)
	{
		if ($header === null) {
			return null;
		}
		if (!preg_match('/^\s*([A-Za-z]+)\s*=\s*(\d*)\s*-\s*(\d*)\s*(?:,|$)/', $header, $info)) {
			throw new UpdraftPlus_InvalidRangeHeaderException('Invalid header format');
		} else if (strtolower($info[1]) !== 'bytes') {
			throw new UpdraftPlus_InvalidRangeHeaderException('Unknown range unit: ' . $info[1]); // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped -- Error messages should be escaped when caught and printed.
		}

		return new self(
			$info[2] === '' ? null : $info[2],
			$info[3] === '' ? null : $info[3]
		);
	}

	/**
	 * @param int|null $firstByte
	 * @param int|null $lastByte
	 * @throws UpdraftPlus_InvalidRangeHeaderException
	 */
	public function __construct($firstByte, $lastByte)
	{
		$this->firstByte = $firstByte === null ? $firstByte : (int)$firstByte;
		$this->lastByte = $lastByte === null ? $lastByte : (int)$lastByte;

		if ($this->firstByte === null && $this->lastByte === null) {
			throw new UpdraftPlus_InvalidRangeHeaderException(
				'Both start and end position specifiers empty'
			);
		} else if ($this->firstByte < 0 || $this->lastByte < 0) {
			throw new UpdraftPlus_InvalidRangeHeaderException(
				'Position specifiers cannot be negative'
			);
		} else if ($this->lastByte !== null && $this->lastByte < $this->firstByte) {
			throw new UpdraftPlus_InvalidRangeHeaderException(
				'Last byte cannot be less than first byte'
			);
		}
	}

	/**
	 * Get the start position when this range is applied to a file of the specified size
	 *
	 * @param int $fileSize
	 * @return int
	 * @throws UpdraftPlus_UnsatisfiableRangeException
	 */
	public function getStartPosition($fileSize)
	{
		$size = (int)$fileSize;

		if ($this->firstByte === null) {
			return ($size - 1) - $this->lastByte;
		}

		if ($size <= $this->firstByte) {
			throw new UpdraftPlus_UnsatisfiableRangeException(
				'Start position is after the end of the file'
			);
		}

		return $this->firstByte;
	}

	/**
	 * Get the end position when this range is applied to a file of the specified size
	 *
	 * @param int $fileSize
	 * @return int
	 * @throws UpdraftPlus_UnsatisfiableRangeException
	 */
	public function getEndPosition($fileSize)
	{
		$size = (int)$fileSize;

		if ($this->lastByte === null) {
			return $size - 1;
		}

		if ($size <= $this->lastByte) {
			throw new UpdraftPlus_UnsatisfiableRangeException(
				'End position is after the end of the file'
			);
		}

		return $this->lastByte;
	}

	/**
	 * Get the length when this range is applied to a file of the specified size
	 *
	 * @param int $fileSize
	 * @return int
	 * @throws UpdraftPlus_UnsatisfiableRangeException
	 */
	public function getLength($fileSize)
	{
		$size = (int)$fileSize;

		return $this->getEndPosition($size) - $this->getStartPosition($size) + 1;
	}

	/**
	 * Get a Content-Range header corresponding to this Range and the specified file
	 * size
	 *
	 * @param int $fileSize
	 * @return string
	 */
	public function getContentRangeHeader($fileSize)
	{
		return 'bytes ' . $this->getStartPosition($fileSize) . '-'
			 . $this->getEndPosition($fileSize) . '/' . $fileSize;
	}
}

class UpdraftPlus_PartialFileServlet
{
	/**
	 * The range header on which the data transmission will be based
	 *
	 * @var UpdraftPlus_RangeHeader|null
	 */
	private $range;

	/**
	 * @param UpdraftPlus_RangeHeader $range Range header on which the transmission will be based
	 */
	public function __construct($range = null)
	{
		$this->range = $range;
	}

	/**
	 * Send part of the data in a seekable stream resource to the output buffer
	 *
	 * @param resource $fp Stream resource to read data from
	 * @param int $start Position in the stream to start reading
	 * @param int $length Number of bytes to read
	 * @param int $chunkSize Maximum bytes to read from the file in a single operation
	 */
	private function sendDataRange($fp, $start, $length, $chunkSize = 2097152)
	{
		if ($start > 0) {
			fseek($fp, $start, SEEK_SET);
		}

		while ($length) {
			$read = ($length > $chunkSize) ? $chunkSize : $length;
			$length -= $read;
			echo fread($fp, $read); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Raw output intended.
		}
	}

	/**
	 * Send the headers that are included regardless of whether a range was requested
	 *
	 * @param string $fileName
	 * @param int $contentLength
	 * @param string $contentType
	 */
	private function sendDownloadHeaders($fileName, $contentLength, $contentType)
	{
		header('Content-Type: ' . $contentType);
		header('Content-Length: ' . $contentLength);
		header('Content-Disposition: attachment; filename="' . $fileName . '"');
		header('Accept-Ranges: bytes');
	}

	/**
	 * Send data from a file based on the current Range header
	 *
	 * @param string $path Local file system path to serve
	 * @param string $contentType MIME type of the data stream
	 */
	public function sendFile($path, $contentType = 'application/octet-stream')
	{
		// Make sure the file exists and is a file, otherwise we are wasting our time
		$localPath = realpath($path);
		if ($localPath === false || !is_file($localPath)) {
			throw new UpdraftPlus_NonExistentFileException(
				$path . ' does not exist or is not a file' // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped -- Error messages should be escaped when caught and printed.
			);
		}

		// Make sure we can open the file for reading
		if (!$fp = fopen($localPath, 'r')) {
			throw new UpdraftPlus_UnreadableFileException(
				'Failed to open ' . $localPath . ' for reading' // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped -- Error messages should be escaped when caught and printed.
			);
		}

		$fileSize = filesize($localPath);

		if ($this->range == null) {
			// No range requested, just send the whole file
			header('HTTP/1.1 200 OK');
			$this->sendDownloadHeaders(basename($localPath), $fileSize, $contentType);

			fpassthru($fp);
		} else {
			// Send the request range
			header('HTTP/1.1 206 Partial Content');
			header('Content-Range: ' . $this->range->getContentRangeHeader($fileSize));
			$this->sendDownloadHeaders(
				basename($localPath),
				$this->range->getLength($fileSize),
				$contentType
			);

			$this->sendDataRange(
				$fp,
				$this->range->getStartPosition($fileSize),
				$this->range->getLength($fileSize)
			);
		}

		fclose($fp);
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
Dropbox2
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
Google
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
blockui
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
checkout-embed
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
cloudfiles
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
handlebars
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
images
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
jquery-ui.dialog.extended
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
jquery.serializeJSON
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
jstree
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
labelauty
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
pcloud
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
tether
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
tether-shepherd
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
updraftclone
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
.htaccess
0.41 KB
July 23 2025 07:38:28
hellrfbn / hellrfbn
0644
S3.php
76.423 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
S3compat.php
30.841 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
cacert.pem
216.279 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-backup-history.php
39.482 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-commands.php
48.606 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-database-utility.php
36.452 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-filesystem-functions.php
40.292 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-http-error-descriptions.php
11.396 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-job-scheduler.php
10.305 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-manipulation-functions.php
16.737 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-partialfileservlet.php
7.381 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-remote-send.php
30.175 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-search-replace.php
20.088 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-semaphore.php
6.273 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-storage-methods-interface.php
18.227 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraft-dashboard-news.php
8.049 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraft-semaphore.php
7.513 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraftcentral-updraftplus-commands.php
1.813 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraftplus-encryption.php
13.635 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-wpadmin-commands.php
36.302 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-zip.php
17.876 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
ftp.class.php
6.503 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
get-cpanel-quota-usage.pl
0.398 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
google-extensions.php
9.274 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.11.4-1-25-1.min.css
37.843 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.11.4-1-25-1.min.css.map
57.006 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.11.4.css
42.181 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.12.1-1-25-1.min.css
39.548 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.12.1-1-25-1.min.css.map
59.413 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.12.1.css
44.033 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
migrator-lite.php
52.476 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-admin-common-1-25-1.min.js
153.627 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-admin-common.js
254.165 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-restorer-skin-compatibility.php
0.441 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-restorer-skin.php
1.683 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftcentral.php
2.743 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-clone.php
7.018 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-login.php
4.266 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-notices.php
20.961 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-tour.php
13.077 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftvault.php
1.992 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF