This file is indexed.

/usr/share/php/kohana2/modules/archive/libraries/drivers/Archive/Tar.php is in libkohana2-modules-php 2.3.4-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
 * Archive library tar driver.
 *
 * $Id: Tar.php 3769 2008-12-15 00:48:56Z zombor $
 *
 * @package    Archive
 * @author     Kohana Team
 * @copyright  (c) 2007-2008 Kohana Team
 * @license    http://kohanaphp.com/license.html
 */
class Archive_Tar_Driver implements Archive_Driver {

	// Compiled archive data
	protected $data = '';

	public function create($paths, $filename = FALSE)
	{
		// Sort the paths to make sure that directories come before files
		sort($paths);

		foreach ($paths as $set)
		{
			// Add each path individually
			$this->add_data($set[0], $set[1], isset($set[2]) ? $set[2] : NULL);
		}

		$tarfile = implode('', $this->data).pack('a1024', ''); // EOF

		if ($filename == FALSE)
		{
			return $tarfile;
		}

		if (substr($filename, -3) != 'tar')
		{
			// Append tar extension
			$filename .= '.tar';
		}

		// Create the file in binary write mode
		$file = fopen($filename, 'wb');

		// Lock the file
		flock($file, LOCK_EX);

		// Write the tar file
		$return = fwrite($file, $tarfile);

		// Unlock the file
		flock($file, LOCK_UN);

		// Close the file
		fclose($file);

		return (bool) $return;
	}

	public function add_data($file, $name, $contents = NULL)
	{
		// Determine the file type
		$type = is_dir($file) ? 5 : (is_link($file) ? 2 : 0);

		// Get file stat
		$stat = stat($file);

		// Get path info
		$path = pathinfo($file);

		// File header
		$tmpdata =
			pack('a100', $name). // Name of file
			pack('a8',   sprintf('%07o',  $stat[2])). // File mode
			pack('a8',   sprintf('%07o',  $stat[4])). // Owner user ID
			pack('a8',   sprintf('%07o',  $stat[5])). // Owner group ID
			pack('a12',  sprintf('%011o', $type === 2 ? 0 : $stat[7])). // Length of file in bytes
			pack('a12',  sprintf('%011o', $stat[9])). // Modify time of file
			pack('a8',   str_repeat(chr(32), 8)). // Reserved for checksum for header
			pack('a1',   $type). // Type of file
			pack('a100', $type === 2 ? readlink($file) : ''). // Name of linked file
			pack('a6',   'ustar'). // USTAR indicator
			pack('a2',    chr(32)). // USTAR version
			pack('a32',  'Unknown'). // Owner user name
			pack('a32',  'Unknown'). // Owner group name
			pack('a8',   chr(0)). // Device major number
			pack('a8',   chr(0)). // Device minor number
			pack('a155', $path['dirname'] === '.' ? '' : $path['dirname']). // Prefix for file name
			pack('a12',  chr(0)); // End

		$checksum = pack('a8',
						sprintf('%07o',
							array_sum(
								array_map('ord', str_split(substr($tmpdata, 0, 512))))));

		$this->data[] = substr_replace($tmpdata, $checksum, 148, 8) .
		                str_pad(file_get_contents($file), (ceil($stat[7] / 512) * 512), chr(0));
	}

} // End Archive_Tar_Driver Class