Asjidkalam / ruo

dictionary-based hash cracker written in rust. 🧁

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ruo 🧁

Ruo is a dictionary-based password cracker written in rust πŸ¦€. The primary purpose is to crack weak hashes/commonly used passwords.

Cracked passwords will be printed to the terminal and saved in the file $HOME/.ruo/hashes.saved. The $HOME/.ruo/hashes.saved file is also used to not load password hashes that you already cracked when you run ruo the next time.

version

Available algorithms

Name Algorithm Crates.io
md5 MD5 crates.io
sha1 SHA-1 crates.io
sha256 SHA-2 256 crates.io
sha512 SHA-2 512 crates.io
ripemd320 RIPEMD320 crates.io

Build From Source

Prerequisites

You'll need the following tools to build from source:

Building

Clone the repository and use cargo to generate a release build.

$ git clone https://github.com/Asjidkalam/ruo.git
$ cd ruo/
$ cargo build --release

Usage

$ ./target/release/ruo <WORDLIST-FILE-PATH> <HASH-TO-CRACK>

Example

πŸ”« ruo v0.1
Loaded SHA-256 hash.
Loaded the wordlist file in 838 millisecs.
🀍 Cracked! 244f28ce3685167745ad3a7f1760fd4483bbbb3fd150b9087b95442d4d6fd905 -> "PASSWORD1" in 6 millisecs

Contribute

  • Suggest a feature / Report a bug
  • More algorithms
  • Better optimization
  • Help me document the code :)

License

This project is licensed under the terms of the MIT license. Check the LICENSE file out for license rights and limitations.

🍰

About

dictionary-based hash cracker written in rust. 🧁

License:MIT License


Languages

Language:Rust 100.0%