Skip to content

Advanced red team password and hash cracking toolkit built for educational and ethical professional use.

License

Notifications You must be signed in to change notification settings

BackdoorAli/BreakerZero_PasswordCracker_v1.0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BreakerZero - Password Cracking & Hash Cracker Toolkit

Version: v1.0 - v1.1 Coming Soon

Author: BackdoorAli aka NotAlita

Purpose: Educational Offensive Security Operations


Overview

BreakerZero is a high-performance, modular password cracking toolkit for ethical red teamers, penetration testers, and security researchers. Designed to rival popular tools like Hydra or John the Ripper, BreakerZero supports SSH, FTP, HTTP Basic Auth, and hash cracking modules.


Features

  • SSH, FTP, HTTP Basic Auth brute force modules
  • MD5 / SHA1 / SHA256 hash cracking engine
  • Plugin-based architecture with dynamic loading
  • Interactive CLI dashboard (live status + session stats)
  • Export reports as TXT, PDF, and HTML
  • Auto-generated session logs
  • Batch attack mode (run all plugins at once)

Project Structure

BreakerZero/
├── main.py                  # CLI interface (uses plugin loader)
├── core/                    # Cracking modules (ssh, ftp, http, hash)
├── modules/runner.py        # Run all plugins at once (orchestration)
├── utils/                   # Session tracker, formatter, report writer
├── dashboard/               # Live CLI dashboard for attack feedback
├── reports/                 # Auto-exported reports (txt, pdf, html)
├── assets/                  # CLI ASCII banners and visual branding
├── wordlists/               # Common and default password lists
├── README.md                # This file
├── LICENSE                  # License file (usage restrictions)
└── requirements.txt         # Required Python packages

How to Use

Install Requirements

pip install -r requirements.txt

Run a Specific Plugin

python main.py --tool ssh --target 192.168.1.10 --user admin --wordlist rockyou.txt --report --pdf --html

List Available Plugins

python main.py --list

Batch Mode (Run All)

from modules.runner import run_all_plugins
run_all_plugins("192.168.1.10", "admin", "rockyou.txt")

License

This project is licensed under a modified MIT License.

  • For educational, ethical hacking, and red team use only.
  • Unauthorized or commercial use is prohibited without written consent.
  • Request approval via GitHub: https://github.com/BackdoorAli

You break it, you pay for it. Use responsibly.