Coder Social home page Coder Social logo

dehydrated's Introduction

Wrapper for THC-Hydra

Dehydrated is a project that provides a convenient Python3 library interface for the THC-Hydra password cracking tool. It abstracts the functionality of THC-Hydra and presents it in a way that is easy for Python developers to use. With Dehydrated, developers can leverage the power of THC-Hydra for password cracking tasks in their own Python applications, without having to delve into the intricacies of the underlying tool. This makes it an ideal solution for those who need to automate password cracking tasks in their workflows.

Disclaimer

Dehydrated is a software tool for password cracking and should not be used for any illegal activities. The authors and contributors of Dehydrated do not condone or support the use of this software for illegal purposes and cannot be held responsible for any misuse of the software. By using Dehydrated, you acknowledge and agree to use it only for lawful purposes.

Usage

from dehydrated.modules import HttpHeadShot, HttpHeadBurst
from dehydrated import run_hydra

# To check only one login/password pair #Shot
hs = HttpHeadShot(
        target="httpbin.org",
        service_port=80,
        login="demo",
        password="demo",
        path="/basic-auth/demo/demo"
    )

print(run_hydra(hs))
# [{'port': '80',
#   'module': 'http-head',
#   'host': 'httpbin.org',
#   'login': 'demo',
#   'passwd': 'demo'}]

# To check logins/passwords lists #Burst
hb = HttpHeadBurst(
        target="httpbin.org",
        service_port=80,
        logins=["admin", "root", "demo"],
        passwords=["1234", "toor","demo"],
        path="/basic-auth/demo/toor"
    )

print(run_hydra(hb))
# [{'port': '80',
#   'module': 'http-head',
#   'host': 'httpbin.org',
#   'login': 'demo',
#   'passwd': 'toor'}]

dehydrated's People

Contributors

zatevakhin avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.