This file is indexed.

/usr/lib/python3/dist-packages/hashID-3.1.4.egg-info/PKG-INFO is in hashid 3.1.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
Metadata-Version: 1.1
Name: hashID
Version: 3.1.4
Summary: Software to identify the different types of hashes
Home-page: https://github.com/psypanda/hashID
Author: c0re
Author-email: c0re@psypanda.org
License: GNU GPL
Download-URL: https://github.com/psypanda/hashID/tarball/v3.1.4
Description: hashID \| hash-identifier
        =========================
        
        Identify the different types of hashes used to encrypt data and especially passwords.
        
        This tool replaces `hash-identifier <http://code.google.com/p/hash-identifier/>`__, which
        is outdated!
        
        hashID is a tool written in Python 3 which supports the
        identification of over 220 unique hash types using regular expressions.
        A detailed list of supported hashes can be found
        `here <https://github.com/psypanda/hashID/blob/master/doc/hashinfo.xlsx>`__.
        
        It is able to identify a single hash, parse a file or read multiple
        files in a directory and identify the hashes within them.
        hashID is also capable of including the corresponding
        `hashcat <https://hashcat.net/oclhashcat/>`__ mode and/or
        `JohnTheRipper <http://www.openwall.com/john/>`__ format in its output.
        
        hashID works out of the box with Python 2 ≥ 2.7.x or Python 3 ≥ 3.3 on any platform.
        
        *Note: When identifying a hash on *nix operating systems use single
        quotes to prevent interpolation*
        
        Installation
        ------------
        
        You can install, upgrade, uninstall hashID with these commands:
        
        .. code:: console
        
            $ pip install hashid
            $ pip install --upgrade hashid
            $ pip uninstall hashid
        
        Or you can install by cloning the repository:
        
        .. code:: console
        
            $ sudo apt-get install python3 git
            $ git clone https://github.com/psypanda/hashid.git
            $ cd hashid
            $ sudo install -g 0 -o 0 -m 0644 doc/man/hashid.7 /usr/share/man/man7/
            $ sudo gzip /usr/share/man/man7/hashid.7
        
        Alternatively you can grab the latest release
        `here <https://github.com/psypanda/hashID/releases>`__.
        
        Usage
        -----
        
        .. code:: console
        
            $ ./hashid.py [-h] [-e] [-m] [-j] [-o FILE] [--version] INPUT
        
        +---------------------------+-------------------------------------------------------+
        | Parameter                 | Description                                           |
        +===========================+=======================================================+
        | INPUT                     | input to analyze (default: STDIN)                     |
        +---------------------------+-------------------------------------------------------+
        | -e, --extended            | list all hash algorithms including salted passwords   |
        +---------------------------+-------------------------------------------------------+
        | -m, --mode                | show corresponding hashcat mode in output             |
        +---------------------------+-------------------------------------------------------+
        | -j, --john                | show corresponding JohnTheRipper format in output     |
        +---------------------------+-------------------------------------------------------+
        | -o FILE, --outfile FILE   | write output to file (default: STDOUT)                |
        +---------------------------+-------------------------------------------------------+
        | --help                    | show help message and exit                            |
        +---------------------------+-------------------------------------------------------+
        | --version                 | show program's version number and exit                |
        +---------------------------+-------------------------------------------------------+
        
        Screenshot
        ----------
        
        .. code:: console
        
            $ ./hashid.py '$P$8ohUJ.1sdFw09/bMaAQPTGDNi2BIUt1'
            Analyzing '$P$8ohUJ.1sdFw09/bMaAQPTGDNi2BIUt1'
            [+] Wordpress ≥ v2.6.2
            [+] Joomla ≥ v2.5.18
            [+] PHPass' Portable Hash
        
            $ ./hashid.py -mj '$racf$*AAAAAAAA*3c44ee7f409c9a9b'
            Analyzing '$racf$*AAAAAAAA*3c44ee7f409c9a9b'
            [+] RACF [Hashcat Mode: 8500][JtR Format: racf]
        
            $ ./hashid.py hashes.txt
            --File 'hashes.txt'--
            Analyzing '*85ADE5DDF71E348162894C71D73324C043838751'
            [+] MySQL5.x
            [+] MySQL4.1
            Analyzing '$2a$08$VPzNKPAY60FsAbnq.c.h5.XTCZtC1z.j3hnlDFGImN9FcpfR1QnLq'
            [+] Blowfish(OpenBSD)
            [+] Woltlab Burning Board 4.x
            [+] bcrypt
            --End of file 'hashes.txt'--
        
        Resources
        ---------
        
        -  http://pythonhosted.org/passlib/index.html
        -  http://openwall.info/wiki/john
        -  http://openwall.info/wiki/john/sample-hashes
        -  http://hashcat.net/wiki/doku.php?id=example\_hashes
        
Keywords: hashid hash identifier hash-identifier
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4