unclesp1d3r / CipherSwarm

CipherSwarm is a distributed hash cracking system designed for efficiency and scalability, built on Ruby on Rails.
Mozilla Public License 2.0
2 stars 0 forks source link
cracking distributed distributed-computing hashcat hashlists password pentesting

CipherSwarm

GitHub GitHub issues GitHub last commit Maintenance wakatime

Maintainability Test Coverage CircleCI

CipherSwarm is a distributed hash cracking system designed for efficiency and scalability and built on Ruby on Rails. Inspired by the principles of Hashtopolis, CipherSwarm leverages the power of collaborative computing to tackle complex cryptographic challenges, offering a web-based interface for managing and distributing hash-cracking tasks across multiple nodes.

[!CAUTION] This project is currently under active development and is not ready for production. Please use it with caution.

Features

Getting Started

Project Assumptions and Target Audience

CipherSwarm, while performing functions similar to Hashtopolis, is not a reiteration of the latter. It is a unique project, conceived with a specific target audience in mind and shaped by several guiding assumptions:

  1. Cracking Tool: CipherSwarm exclusively supports Hashcat as the cracking tool.

  2. Connectivity: All clients connected to CipherSwarm are assumed to use a reliable, high-speed connection, typically found in a Local Area Network (LAN) environment.

  3. Trust Level: CipherSwarm operates under the assumption that all client machines are trustworthy and are under the direct control and management of the user utilizing CipherSwarm.

  4. User Base: The system assumes that users, though having different levels of administrative access, belong to the same organization or project team, ensuring a level of trust and common purpose.

  5. Hashlist Management: CipherSwarm is designed to handle hash lists derived from various projects or operations. Depending on access privileges, it lets users view results from specific projects or across all projects.

  6. Client-Project Affiliation: Cracking clients can be associated with specific projects, executing operations solely for that project. Alternatively, they can perform operations across all projects, with defined priorities for particular projects.

CipherSwarm is crafted explicitly for medium to large-scale cracking infrastructure, interconnected via high-speed networks. It does not support utilization over the Internet or integration with anonymous user systems acting as cracking clients. By focusing on secure, centralized, and high-performance environments, CipherSwarm delivers tailored scalability and efficiency to meet the demands of sophisticated cracking operations.

Prerequisites

Installation

  1. Clone the repository to your local machine:
git clone https://github.com/unclesp1d3r/CipherSwarm.git
cd CipherSwarm
  1. Install the required gems:
bundle install
  1. Create the database and run migrations:
rails db:create
rails db:migrate
  1. Start the rails server:
rails s

Docker Installation

The quickest way to get CipherSwarm up and running is to use Docker. The following steps will guide you through the process:

  1. Clone the repository to your local machine:
git clone
cd CipherSwarm
  1. Deploy the Docker containers:
docker compose -f docker-compose-production.yml up
  1. Access the CipherSwarm web interface at http://localhost:3000.
  2. Log in with the default admin credentials (username: admin, password: password) and change the password immediately.

Usage

  1. Access the CipherSwarm web interface at http://localhost:3000.
  2. Log in with the default admin credentials (username: admin, password: password) and change the password immediately.
  3. Add nodes to your network through the interface.
  4. Create new cracking tasks, specifying the hash types and input files.
  5. Monitor the progress of your tasks in real time through the dashboard.

Architecture

CipherSwarm is built on a modular architecture that separates task management, node communication, and hash-cracking processes. This design allows for easy scaling and customization.

Data Concepts

In the CipherSwarm system, hashcat cracking jobs are managed around four core objects: Campaigns, Attacks, Templates, and Tasks. Understanding these objects and their interrelations is critical to effectively leveraging the system for distributed hash cracking.

Campaigns

Campaigns represent a comprehensive unit of work focused on a single hash list. Each Campaign is designed to achieve a specific goal, such as recovering passwords from a set of hashes. A Campaign may encompass multiple Attacks, each tailored to run against the Campaign's hash list using different strategies or parameters. Campaigns facilitate the organization and prioritization of attacks, allowing for sequential execution based on priority or effectiveness.

Attacks

An Attack is a defined unit of hashcat work characterized by its attack type and the word list and rules it employs. An attack embodies a specific approach to cracking hashes, such as brute force or dictionary attacks, complete with all necessary parameters. Large attacks can be subdivided into Tasks to distribute the workload across multiple Agents, enabling parallel processing and thus speeding up the cracking process.

Templates

A Template serves as a reusable definition of an attack. It specifies the attack type and parameters (such as word lists and rules) but is not bound to a specific hash list. Templates allow for the rapid configuration of new attacks by applying a pre-defined set of strategies to different hash lists and types. This abstraction facilitates the quick adaptation to new cracking challenges without needing reconfiguring from scratch.

Tasks

The Task is the smallest unit of work within the system, representing a segment of an Attack that an individual Agent is tasked with processing at any given time. Tasks are the fundamental work packets distributed to Agents in the network, allowing for the division of a larger attack into manageable pieces. This division not only enhances efficiency through parallel processing but also allows for dynamic load balancing across the network of Agents.

Contributing

We welcome contributions from the community! Please refer to the CONTRIBUTING.md file for guidelines on how to get involved.

[!NOTE] Many changes may not have been reflected in the CHANGELOG.md file prior to the v0.2.0 release. Please refer to the commit history for detailed information on changes.

Acknowledgments