This file is indexed.

/usr/share/php/Icewind/SMB/autoload.php is in php-smb 1.0.5-1ubuntu1.

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
<?php

require_once 'Icewind/Streams/autoload.php';

// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'icewind\\smb\\abstractshare' => '/AbstractShare.php',
                'icewind\\smb\\connection' => '/Connection.php',
                'icewind\\smb\\errorcodes' => '/ErrorCodes.php',
                'icewind\\smb\\exception\\accessdeniedexception' => '/Exception/AccessDeniedException.php',
                'icewind\\smb\\exception\\alreadyexistsexception' => '/Exception/AlreadyExistsException.php',
                'icewind\\smb\\exception\\authenticationexception' => '/Exception/AuthenticationException.php',
                'icewind\\smb\\exception\\connectexception' => '/Exception/ConnectException.php',
                'icewind\\smb\\exception\\connectionexception' => '/Exception/ConnectionException.php',
                'icewind\\smb\\exception\\connectionrefusedexception' => '/Exception/ConnectionRefusedException.php',
                'icewind\\smb\\exception\\exception' => '/Exception/Exception.php',
                'icewind\\smb\\exception\\fileinuseexception' => '/Exception/FileInUseException.php',
                'icewind\\smb\\exception\\forbiddenexception' => '/Exception/ForbiddenException.php',
                'icewind\\smb\\exception\\hostdownexception' => '/Exception/HostDownException.php',
                'icewind\\smb\\exception\\invalidhostexception' => '/Exception/InvalidHostException.php',
                'icewind\\smb\\exception\\invalidpathexception' => '/Exception/InvalidPathException.php',
                'icewind\\smb\\exception\\invalidrequestexception' => '/Exception/InvalidRequestException.php',
                'icewind\\smb\\exception\\invalidresourceexception' => '/Exception/InvalidResourceException.php',
                'icewind\\smb\\exception\\invalidtypeexception' => '/Exception/InvalidTypeException.php',
                'icewind\\smb\\exception\\nologinserverexception' => '/Exception/NoLoginServerException.php',
                'icewind\\smb\\exception\\noroutetohostexception' => '/Exception/NoRouteToHostException.php',
                'icewind\\smb\\exception\\notemptyexception' => '/Exception/NotEmptyException.php',
                'icewind\\smb\\exception\\notfoundexception' => '/Exception/NotFoundException.php',
                'icewind\\smb\\exception\\timedoutexception' => '/Exception/TimedOutException.php',
                'icewind\\smb\\fileinfo' => '/FileInfo.php',
                'icewind\\smb\\ifileinfo' => '/IFileInfo.php',
                'icewind\\smb\\ishare' => '/IShare.php',
                'icewind\\smb\\nativefileinfo' => '/NativeFileInfo.php',
                'icewind\\smb\\nativeserver' => '/NativeServer.php',
                'icewind\\smb\\nativeshare' => '/NativeShare.php',
                'icewind\\smb\\nativestate' => '/NativeState.php',
                'icewind\\smb\\nativestream' => '/NativeStream.php',
                'icewind\\smb\\parser' => '/Parser.php',
                'icewind\\smb\\rawconnection' => '/RawConnection.php',
                'icewind\\smb\\server' => '/Server.php',
                'icewind\\smb\\share' => '/Share.php',
                'icewind\\smb\\system' => '/System.php',
                'icewind\\smb\\timezoneprovider' => '/TimeZoneProvider.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd