Git Product home page Git Product logo

pitshachio's Introduction

PitSHAchio: A Distributed Password Cracking Program

Introduction

PitSHAchio is a distributed password cracking program designed to brute force password hashes using a distributed computing approach. The project utilizes a main client written in full-stack JavaScript to provide a user-friendly web-based UI, communicating with a server built in C++ via IPC sockets. The server, in turn, interacts with compute clients also built in C++ using TCP sockets. This README provides an overview of the project's goals, approach, and framework.

Goal

The primary goal of PitSHAchio is to crack password hashes efficiently through distributed computing. The client inputs a password consisting of numbers and letters, which is then hashed and sent to the server. The server, utilizing a bijective mapping from ASCII characters to numbers, computes potential passwords and responds with a list of possible matches

Approach

  1. Encoding: All strings are converted into encoded numbers using a bijective mapping.
  2. Distribution: Compute clients are assigned portions of integers mod N to compute, skipping over every N strings to test them against the hash.
  3. Matching: If a client finds a matching hash, it sends the result back to the server.

Framework

  1. Main Client: Full-stack JavaScript providing a web-based UI for user interaction.
  2. Server: Built in C++, handling communication with the main client and compute clients via IPC and TCP sockets, respectively.
  3. Compute Clients: Also built in C++, tasked with computing portions of the password space and testing against the hash.

Usage

  1. Start the web server
cd webserver
npm run build
npm run start & disown
  1. Start the compute server using the provided C++ executable.
cd ../computeserver
./ComputeServer & disown
  1. Make sure there is at least one compute client
cd  ../computeclient
./Client
  • if you are running the client on a different device, please provide the IP address of the server
  • ./Client 1.2.3.4
  1. Access the web-based UI provided by the webserver at port 3000
  2. Enter a hash to be reversed, or use the passworder converter to get a hash first.
  3. View the results and potential password match provided by the server.

Dependencies

  • Node.js
    • express
    • js-sha256
    • net
    • react
  • g++
    • openssl

pitshachio's People

Contributors

hikarusadashi avatar usymmij avatar

Watchers

 avatar

Forkers

hikarusadashi

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.