All Projects → ngirot → BruteForce

ngirot / BruteForce

Licence: LGPL-3.0 license
A simple brute forcer written in GO for SHA1, SHA256, SHA512, MD5 and bcrypt

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to BruteForce

hash-wasm
Lightning fast hash functions using hand-tuned WebAssembly binaries
Stars: ✭ 382 (+679.59%)
Mutual labels:  hash, md5, bcrypt, sha1, sha256
hash-checker
Fast and simple application that allows you to generate and compare hashes from files and text
Stars: ✭ 72 (+46.94%)
Mutual labels:  hash, md5, sha1, sha256
Openhashtab
📝 File hashing and checking shell extension
Stars: ✭ 599 (+1122.45%)
Mutual labels:  hash, md5, sha1, sha256
Hash Buster
Crack hashes in seconds.
Stars: ✭ 981 (+1902.04%)
Mutual labels:  hash, md5, sha1, sha256
Digestif
Simple hash algorithms in OCaml
Stars: ✭ 69 (+40.82%)
Mutual labels:  hash, md5, sha1, sha256
Hashcobra
HashCobra Hash Cracking tool.
Stars: ✭ 96 (+95.92%)
Mutual labels:  hash, md5, sha1, sha256
Merkle
Node.js module implementing Merkle tree algorithm
Stars: ✭ 123 (+151.02%)
Mutual labels:  hash, md5, sha1, sha256
fhash
fHash - an open source files hash calculator for Windows and macOS
Stars: ✭ 222 (+353.06%)
Mutual labels:  hash, md5, sha1, sha256
Gtkhash
A cross-platform desktop utility for computing message digests or checksums
Stars: ✭ 167 (+240.82%)
Mutual labels:  hash, md5, sha1, sha256
Dcipher Cli
🔓Crack hashes using online rainbow & lookup table attack services, right from your terminal.
Stars: ✭ 193 (+293.88%)
Mutual labels:  password, hash, md5
Password4j
Password4j is a user-friendly cryptographic library that supports Argon2, Bcrypt, Scrypt, PBKDF2 and various cryptographic hash functions.
Stars: ✭ 124 (+153.06%)
Mutual labels:  password, hash, bcrypt
Pwcrack Framework
Password Crack Framework
Stars: ✭ 72 (+46.94%)
Mutual labels:  password, md5, sha1
Digestpp
C++11 header-only message digest library
Stars: ✭ 116 (+136.73%)
Mutual labels:  hash, sha1, sha256
John
John the Ripper jumbo - advanced offline password cracker, which supports hundreds of hash and cipher types, and runs on many operating systems, CPUs, GPUs, and even some FPGAs
Stars: ✭ 5,656 (+11442.86%)
Mutual labels:  opencl, password, hash
signet
Easily compare SHA/BLAKE2 sums.
Stars: ✭ 13 (-73.47%)
Mutual labels:  hash, sha1, sha256
crypto.js
base on crypto module
Stars: ✭ 13 (-73.47%)
Mutual labels:  md5, sha1, sha256
crypthash-net
CryptHash.NET is a .NET multi-target library to encrypt/decrypt/hash/encode/decode strings and files, with an optional .NET Core multiplatform console utility.
Stars: ✭ 33 (-32.65%)
Mutual labels:  password, hash, bcrypt
bcrypt
BCrypt is a password hashing function
Stars: ✭ 138 (+181.63%)
Mutual labels:  password, hash, bcrypt
WebCrypto.swift
A small collection of cryptographic functions based on the JavaScript WebCrypto API.
Stars: ✭ 16 (-67.35%)
Mutual labels:  hash, sha1, sha256
CryptoKnight
CryptoKnight is a general purpose cryptography desktop app
Stars: ✭ 18 (-63.27%)
Mutual labels:  password, bcrypt, sha256

BruteForce Build Status

A simple brute force software written in GO

Usage

BruteForce --type [md5|sha256|sha512|sha1|bcrypt|ripemd160] --value <hash>

Example:

./BruteForce --type sha256 --value 88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589
Start brute-forcing (sha256)...
Found: abc in 1 s

How to use a specific char set

If you want to use a specific set of chars, write it on a simple txt file and use the --alphabet option Example with a file alpha.data containing:

abcdefghijklmnopqrstuvwxyz

You can launch it with:

./BruteForce --alphabet alpha.data --type sha256 --value 9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08
Start brute-forcing (sha256)...
Found: test in 0 s

How to use a dictionary file

If you want to use a file containing all words to be tested, write them on a simple file (one per line) and use the --dictionary option. Example with a file dic.data containing:

dragon
butterfly
test

You can launch it with:

./BruteForce --dictionary dic.data --type sha256 --value 9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08
Start brute-forcing (sha256)...
Found: test in 0 s

How to use a salt

If you want to use a salt you can simply add it with the salt parameter (before and/or after) Example:

./BruteForce --value cb2537e62f7f7358cb5b6a812c7d3c7d95d87733 --type sha1 --salt-after 1234567890
Start brute-forcing (sha1)...
Found: zzzz in 3 s
./BruteForce --value ef95124ec674cea240e9dd02c86ba3670e2ee5a2 --type sha1 --salt-before 1234567890
Start brute-forcing (sha1)...
Found: zzzz in 3 s

How to use size limit

If you want to control the size words generated, you can use the size parameter for a specific size or a range. Example:

./BruteForce  --type sha256 --value 9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08 --size 4
Start brute-forcing '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08' (sha256)...
Found: test in 2 s 
./BruteForce  --type sha256 --value 9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08 --size 2-4
Start brute-forcing '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08' (sha256)...
Found: test in 2 s

Gpu support (beta)

Use GPU support

Currently, only SHA-256 is supported with this option, and only for Windows and Linux builds, with an OpenCL compatible device and driver.

And if you want to use GPU to compute hashs, just use the GPU parameter:

./BruteForce --type sha256 --value 9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08 --gpu
Start brute-forcing '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08' (sha256)...
Found: test in 9 s

Build with GPU support

If you want to build with GPU support, you must use the command go build -tags opencl. You will also need header and lib files available.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].