This file is indexed.

/usr/lib/python2.7/dist-packages/scp-0.10.2.egg-info/PKG-INFO is in python-scp 0.10.2-1.

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
Metadata-Version: 1.0
Name: scp
Version: 0.10.2
Summary: scp module for paramiko
Home-page: https://github.com/jbardin/scp.py
Author: James Bardin
Author-email: j.bardin@gmail.com
License: LGPL
Description: Pure python scp module
        ======================
        
        The scp.py module uses a paramiko transport to send and recieve files via the
        scp1 protocol. This is the protocol as referenced from the openssh scp program,
        and has only been tested with this implementation.
        
        
        Example
        -------
        
        ..  code-block:: python
        
            from paramiko import SSHClient
            from scp import SCPClient
        
            ssh = SSHClient()
            ssh.load_system_host_keys()
            ssh.connect('example.com')
        
            # SCPCLient takes a paramiko transport as its only argument
            scp = SCPClient(ssh.get_transport())
        
            scp.put('test.txt', 'test2.txt')
            scp.get('test2.txt')
        
            scp.close()
        
        
        ..  code-block::
        
            $ md5sum test.txt test2.txt
            fc264c65fb17b7db5237cf7ce1780769 test.txt
            fc264c65fb17b7db5237cf7ce1780769 test2.txt
        
        Using 'with' keyword
        ------------------
        
        ..  code-block:: python
        
            from paramiko import SSHClient
            from scp import SCPClient
        
            ssh = SSHClient()
            ssh.load_system_host_keys()
            ssh.connect('example.com')
        
            with SCPClient(ssh.get_transport()) as scp:
                scp.put('test.txt', 'test2.txt')
                scp.get('test2.txt')
        
        
        ..  code-block::
        
            $ md5sum test.txt test2.txt
            fc264c65fb17b7db5237cf7ce1780769 test.txt
            fc264c65fb17b7db5237cf7ce1780769 test2.txt
        
Platform: UNKNOWN