Skip to content

A rust program to bruteforce ZIP, PDF and some common hashes.

License

Notifications You must be signed in to change notification settings

tamton-aquib/veldora

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Veldora

A command-line program to bruteforce zips, pdfs and some popular hashes.
This is basically a rust version of bruttle, but a lot faster.

Installation:

From AUR

yay -S veldora

From source

cargo install veldora

Usage:

veldora <file/hash> <password_list>

Examples:

veldora "5f4dcc3b5aa765d61d8327deb882cf99" ./password_list.txt

veldora secure.zip ~/Downloads/password_list.txt

veldora secure.pdf ~/Downloads/password_list.txt

Make sure $HOME/.cargo/ is in path.

veldora

Notes:

  • Get password lists from here
  • To create custom passlist, try: cupp.py
  • As always, not to be used for illegal purposes : )

TODOS:

  • Code cleaning and pretty error messages.
  • Add to crates.io
  • Add concurrency (with rayon)
  • Add support for other filetypes like rar.
  • Add more hashtypes (bcrypt, whirpool, etc)
  • Add tests for each.
  • hash mode breaking for zip and pdf. (would get super fast)
  • Solve unicode error when reading some password lists.