Metadata-Version: 1.1
Name: leprechaun
Version: 2.0.3
Summary: A simple rainbow table generator
Home-page: https://github.com/zcdziura/leprechaun
Author: Zach Dziura
Author-email: zcdziura@gmail.com
License: MIT
Description: #############
        Leprechaun.py
        #############
        A simple rainbow table generator written in **Python 3**.
        
        ********
        Synopsis
        ********
        Leprechaun.py is a simple Python program used for generating cryptographic
        rainbow tables. This script can compute hashes using the MD5, SHA1, SHA256 and
        SHA512 algorithms. Leprechaun can hash any arbitrary number of plaintext files,
        as long as they're within the same directory. Or, if you're a normal person
        without a huge directory filled with wordlists, you can hash one single file.
        The choice is yours! 
        
        ************
        Installation
        ************
        Leprechaun is available for download from PyPI using ``pip``, just like
        everything else! ::
        
            $ mkdir DIRECTORY
            $ cd DIRECTORY
            $ virtualenv -p python3 .
            $ pip install leprechaun
        
        *****
        Usage
        *****
        ``leprechaun [-h] [-g] [-l LENGTH] [-d] [-o OUTPUT] [-m] [-s] [-s2] [-s5] WORDLIST``
            
        **arguments:** ::
        
            (Positional Arguments)
            WORDLIST                          The file name of the wordlist to hash
        
            (Optional Arguments)
            -h, --help                        Show this help message and exit
        
            (Wordlist Arguments)
            -f, --wordlist-folder             Hash all of the plaintext files in a
                                              folder, rather than a single file. The
                                              name of the folder will be given by the
                                              WORDLIST argument
            -g, --generate-wordlist           Generate a new wordlist dynamically,
                                              instead of using a pre-built one
            -l LENGTH, --word-length LENGTH   The maximum length of the words to be generated (default=8)
        
            (Output Arguments)
            -o OUTPUT, --output OUTPUT        Name of the rainbow table file, without the file extension (default=rainbow)
            -d, --use-database                Save the output to an SQLite DB instead of a plaintext file
        
            (Hashing Arguments)
            -m, --md5                         Generate MD5 hashes of given passwords (default)
            -s, --sha1                        Generate SHA1 hashes of given passwords    
            -s2, --sha256                     Generate SHA256 hashes of given passwords    
            -s5, --sha512                     Generate SHA512 hashes of given passwords
        
        ********
        Examples
        ********
        Below are a few simple examples on using Leprechaun.py. While not an exaustive
        compilation of use cases, the program itself is quite simple to figure out on
        one's own. ::
        
          # Create a rainbow table using the MD5 hashing algorithm.
          leprechaun /path/to/your/wordlist.txt
        
          # Create a rainbow table using the SHA-1 hashing algorithm.
          leprechaun -s /path/to/your/wordlist.txt
        
          # Create a rainbow table using the SHA-1 hashing algorithm, saving the
          # output in an SQLite database.
          leprechaun -s -d /path/to/your/wordlist.txt
        
          # Create a rainbow table using the SHA-256 hashing algorithm, hashing all of
          # the plaintext files in a given directory, saving the output in an SQLite
          # database.
          leprechaun -s2 -d -f /path/to/your/wordlists
        
          # Create a rainbow table using the SHA-256 hashing algorithm, hashing all of
          # the plaintext files in a given directory, saving the output in an SQLite
          # database named "patty"
          leprechaun -s2 -d -o patty -f /path/to/your/wordlists
        
        *********
        Wordlists
        *********
        Because any good wordlist contains several million lines of words, and several
        million lines of anything takes up a heck of a lot of space, the previously
        distributed wordlist is no longer being distributed. But don't fret! I've
        uploaded that same wordlist onto the Internet for everyone to enjoy. You may
        find it here_.
        
        .. _here: https://dl.dropboxusercontent.com/u/4412788/wordlist.tar.gz
        
        *******
        License
        *******
        
            The MIT License (MIT)
        
            Copyright (c) 2013 Zach Dziura
        
            Permission is hereby granted, free of charge, to any person obtaining a copy
            of this software and associated documentation files (the "Software"), to deal
            in the Software without restriction, including without limitation the rights
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
            copies of the Software, and to permit persons to whom the Software is
            furnished to do so, subject to the following conditions:
        
            The above copyright notice and this permission notice shall be included in
            all copies or substantial portions of the Software.
        
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
            THE SOFTWARE.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
