Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arcaneiceman/kraken
Kraken: A multi-platform distributed brute-force password cracking system
https://github.com/arcaneiceman/kraken
bruteforce-password-cracker hashcat kraken kraken-client password-cracker security security-tools wpa2-cracking
Last synced: 1 day ago
JSON representation
Kraken: A multi-platform distributed brute-force password cracking system
- Host: GitHub
- URL: https://github.com/arcaneiceman/kraken
- Owner: arcaneiceman
- Created: 2019-11-17T17:15:10.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-02T18:06:06.000Z (over 1 year ago)
- Last Synced: 2024-08-02T07:12:14.209Z (3 months ago)
- Topics: bruteforce-password-cracker, hashcat, kraken, kraken-client, password-cracker, security, security-tools, wpa2-cracking
- Language: JavaScript
- Size: 4.52 MB
- Stars: 286
- Watchers: 14
- Forks: 44
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-password-cracking - Kraken - A multi-platform distributed brute-force password cracking system. (Hashcat / Distributed cracking)
- awesome-hacking-lists - arcaneiceman/kraken - Kraken: A multi-platform distributed brute-force password cracking system (JavaScript)
README
---
> **Warning**I have been reviewing the Kraken-Client code and since this was my first ever react app, its old, clunky and it needs major improvement (the server needs some work too). In the next few weeks/months I will do my best to rewrite it in either updated React or in another framework. Please feel free to continue using this as is, if you have any trouble please continue to raise issues and provide feedback! Thanks!
---
## Kraken: A multi-platform distributed brute-force password cracking system
### What is Kraken
Kraken is an online distributed brute force password cracking tool. It allows you to parallelize dictionaries and crunch word generator based cracking across multiple machines both as a web app in a web browser and as a standalone electron based client. Kraken aims to be easy to use, fault tolerant and scalable.
I wrote Kraken because I wanted to learn more about offensive security and to write an easy solution to overcome the limitation of using a single device when attempting distribute brute force workloads.
### Installation
##### Server and Browser Client
Kraken is a dockerized application using docker-compose which will launch the db (Postgres), s3 compliant file storage (Minio),
the server and the browser client. You can find the docker-compose file at the root directory of the repository. You can deploy it using the following command:```
docker-compose up
```
Kraken's Browser Client should be accessible at:
- HTTP : localhost:8080 (use server url http://localhost:5000/api [default])
- HTTPS : https://localhost:8443 (use server url https://localhost:8443/api)Note: To run the Browser Client from a remote machine, you MUST use HTTPS for both server url and browser url.
Eg. If you are hosting the server on 192.168.1.2, then browser client will be available at https://192.168.1.2:8443
and the server url should be https://192.168.1.2:8443/apiTo upload password lists or dictionaries, upload them to Minio Console at localhost:9001. View steps below for a detailed guide
Otherwise, you can generate word lists dynamically using crunch. See crunch options and how to use them here: crunch man pageKraken's server runs on localhost:5000 and also hosts swagger documentation at localhost:5000/swagger.
##### Portable Desktop Client
The desktop client is an electron based portable application and can be run on Mac, Windows and Linux. Due to sensitive permissions required to function, it is highly recommended that you compile and it yourself by cloning the repo and using :
```
cd kraken-client
npm install
npm run electron-start
```###### Windows
Note: Window EXE portable client needs to run in the folder with its hashcat dependencies. Hashcat files can be dowloaded from their home page or [here](https://hashcat.net/files/hashcat-5.1.0.7z).
Ive included a compressed zip file with the portable executable and required hashcat files. They can be downloaded:
- Portable Exe
- Compressed Zip###### Linux
Releases include a Linux **AppImage** which only requires hashcat to be installed.
- AppImage
Install hashcat:
```
sudo apt-get install hashcat
```
You will have to give AppImage permission via properties to execute.### Adding WordLists to Kraken
To add your wordlists to minio, here are the steps:
1. [UI way] Access your minio console at http://localhost:9001/. Should land you here:![image](https://user-images.githubusercontent.com/4005494/164892721-a2d58af4-b569-4646-a24f-06aa851a1665.png)
2. Log in with u:admin p:password (default; can be changed). A 'kraken' bucket should be present like so:
![image](https://user-images.githubusercontent.com/4005494/164892791-5be36a85-bb72-40ae-a52f-0a2d2802cb0b.png)
3. Hit 'Browse' to see what files are available and add the wordlists you with 'Upload'
![image](https://user-images.githubusercontent.com/4005494/164893024-b55b4a17-1e83-46c3-8363-ffaae5257f77.png)
4. Either wait up to 5 minutes for the server to pick it up or restart the server. You'll know the server has picked up the list when via log. Note: Large lists take a while to index.
![image](https://user-images.githubusercontent.com/4005494/164893050-41ecf42c-c40c-4bde-81eb-dac5eb4b5c74.png)
5. The wordlist should show up when creating the request
![image](https://user-images.githubusercontent.com/4005494/164893097-0b990b97-cae5-4ccd-9474-73d9a9ae31ba.png)
### Note
This guide is on-going but please feel free to raise an issue or contact me for any help required.