All Projects → hamedA2 → Zydra

hamedA2 / Zydra

Licence: mit

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Zydra

password-list
Password lists with top passwords to optimize bruteforce attacks
Stars: ✭ 174 (-2.25%)
Mutual labels:  password, bruteforce, cracking
Dictionary Of Pentesting
Dictionary collection project such as Pentesing, Fuzzing, Bruteforce and BugBounty. 渗透测试、SRC漏洞挖掘、爆破、Fuzzing等字典收集项目。
Stars: ✭ 492 (+176.4%)
Mutual labels:  dictionary, password, bruteforce
SuperHackerTool5000
A tool that will hack literally anything on the planet. If you get your hands on this tool, be ready to get put behind bars.
Stars: ✭ 31 (-82.58%)
Mutual labels:  password, bruteforce, cracking
Ob3vil1on
Another archive cracker created in python | cracking [zip/7z/rar] by bruteforcing [ NOT MAINTAINED ]
Stars: ✭ 17 (-90.45%)
Mutual labels:  zip, password, cracking
Duplicut
Remove duplicates from MASSIVE wordlist, without sorting it (for dictionary-based password cracking)
Stars: ✭ 352 (+97.75%)
Mutual labels:  dictionary, password, cracking
Keychaincracker
macOS keychain cracking tool
Stars: ✭ 693 (+289.33%)
Mutual labels:  password, cracking
Bruteforce Database
Bruteforce database
Stars: ✭ 806 (+352.81%)
Mutual labels:  password, bruteforce
Wssh
WSSH Is a tool for brute forcing servers that has port 22 open via ssh, wssh is probably the fastest ssh brute forcer available
Stars: ✭ 21 (-88.2%)
Mutual labels:  bruteforce, cracking
Featherpasswordmanager
Highly portable extremely light-weight password manager that stores all your passwords in a local encrypted file.
Stars: ✭ 39 (-78.09%)
Mutual labels:  password, file
Kaonashi
Wordlist, rules and masks from Kaonashi project (RootedCON 2019)
Stars: ✭ 353 (+98.31%)
Mutual labels:  dictionary, password
Mentalist
Mentalist is a graphical tool for custom wordlist generation. It utilizes common human paradigms for constructing passwords and can output the full wordlist as well as rules compatible with Hashcat and John the Ripper.
Stars: ✭ 945 (+430.9%)
Mutual labels:  password, cracking
Format parser
file metadata parsing, done cheap
Stars: ✭ 46 (-74.16%)
Mutual labels:  zip, pdf
Sonatamediabundle
Symfony SonataMediaBundle
Stars: ✭ 415 (+133.15%)
Mutual labels:  pdf, file
Probable Wordlists
Version 2 is live! Wordlists sorted by probability originally created for password generation and testing - make sure your passwords aren't popular!
Stars: ✭ 7,312 (+4007.87%)
Mutual labels:  dictionary, password
Plutus
An automated bitcoin wallet collider that brute forces random wallet addresses
Stars: ✭ 404 (+126.97%)
Mutual labels:  bruteforce, cracking
Chasm
A CHaracter Aware Splitting Method for producing password candidates.
Stars: ✭ 37 (-79.21%)
Mutual labels:  password, cracking
Hashcat
World's fastest and most advanced password recovery utility
Stars: ✭ 11,014 (+6087.64%)
Mutual labels:  password, cracking
Cross Zip
Cross-platform .zip file creation
Stars: ✭ 103 (-42.13%)
Mutual labels:  zip, file
Hypertag
Knowledge Management for Humans using Machine Learning & Tags
Stars: ✭ 116 (-34.83%)
Mutual labels:  pdf, file
Socialbox Termux
SocialBox is a Bruteforce Attack Framework [ Facebook , Gmail , Instagram ,Twitter ] , Coded By Belahsan Ouerghi Edit By init__0 for termux on android
Stars: ✭ 324 (+82.02%)
Mutual labels:  bruteforce, cracking

Zydra

Zydra is a file password recovery tool and Linux shadow file cracker. It uses the dictionary search or Brute force method for cracking passwords.

Supported Files

  • RAR Files
  • Legacy ZIP Files
  • PDF Files
  • Linux Shadow Files (zydra can find all the user’s password in the linux shadow file one after the other)

Prerequisites

To run the app, minimal requirements are:

  • Python 3.3 or higher
  • debian-based linux distro, preferably Kali linux 2
  • qpdf and unrar packages
    Installing these packages on kali is as easy as running the following commands on terminal:
    $ sudo apt-get update
    $ sudo apt-get install qpdf unrar
  • some python modules in this program need to be installed manually, like: zipfile, rarfile, crypt, pyfiglet, py-term(for term module) and so on. you can use pip3 for install them example:
    $ pip3 install py-term
    notice: rar,zip and pdf files must have an extension, shadow files does not need an extension.
  • Install figlet font "epic" if it does not exists on your system:
    sudo wget http://www.figlet.org/fonts/epic.flf -O /usr/share/figlet/epic.flf

Disclaimer

This tool is only for testing and academic purposes Do not use it for illegal purposes!

Features

  • Cracking files password using two methods: 1. dictionary method 2. brute force method
  • In the brute force method, you can specify the min length and max length of the passwords.
  • In the brute force method, you can specify the type of characters that may be used in the password.
  • There is a percent progress bar showing how much of the process has been performed.
  • Error handling.
  • One of the most important features of Zydra is the multiprocessing feature that speeds up the program. For example if you have 8 CPU cores, Zydra will use all of them for processing at the same time.

Installation

Download Zydra by cloning the Git repository:
$ git clone https://github.com/hamedA2/Zydra.git

You can also use vagrant to automatically install and run Zydra (more information at the bottom of the page).

Usage

To get a list of all options and learn how to use this app, enter the following command:

$ python3 Zydra.py -h

alt text

Examples

1- Dictionary search to find the password for a zip file
In this example I use rockyou.txt dictionary

$ python3 Zydra.py –f file.zip –d rockyou.txt

alt text

2- Brute force search to find the password for the users in the shadow file
Minimum length of password is 4 and maximum length is 4 and we try to find passwords that are composed of numbers and symbols letters.

$ python3 Zydra.py –f shadow –b digits,symbols –m 4 –x 4

alt text

Vagrant

To run Zydra using vagrant use the following command (you have to be in the same folder as the repository):

vagrant up

and once it finishes inialisation, you can run:

vagrant ssh

to connect to the virtual machine.

To exit the virtual machine just type exit in the shell.

To destroy the virtual machine run vagrant destroy.

More information regarding vagrant usage can be found here

Note: By default the Vagrantfile uses the following settings:

    vb.cpus = 4
    vb.memory = 4096

Edit the Vagrantfile and change those values to improve the performance.

Author

  • Hamed Hosseini

A special thank to, Hamed Izadi

License

This project is licensed under the MIT License - see the LICENSE.md file for details

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].