https://github.com/p3t3r67x0/leakz
Retrieve plaintext passwords from pre compiled hash values like md5, sha1, sha224, sha256, sha384, sha512.
https://github.com/p3t3r67x0/leakz
crack hash md5 sha1 sha224 sha256 sha384 sha512
Last synced: about 1 month ago
JSON representation
Retrieve plaintext passwords from pre compiled hash values like md5, sha1, sha224, sha256, sha384, sha512.
- Host: GitHub
- URL: https://github.com/p3t3r67x0/leakz
- Owner: p3t3r67x0
- License: mit
- Created: 2017-11-18T14:30:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-11T06:44:43.000Z (over 2 years ago)
- Last Synced: 2025-04-10T13:28:00.102Z (8 months ago)
- Topics: crack, hash, md5, sha1, sha224, sha256, sha384, sha512
- Language: Python
- Homepage: https://hashcrack.me
- Size: 283 KB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# leakz
> Find plain text passwords in pre compiled hash values like md5, sha1, sha224, sha256, sha384, sha512
### Setup
Next we can install InfluxDB, MonngoDB and Nginx
```sh
sudo apt install influxdb mongodb nginx
```
### Dependencies
Now install the dependencies and activate the virtualenv enviroment
```sh
sudo apt install python3-pip
sudo pip3 install virtualenv
virtualenv -p /usr/bin/python3 venv
source venv/bin/activate
pip3 install setuptools==45
pip3 install -r requirements
```
### Configuration
Here we create a file called `config.json` in the current directory
```json
{
"MONGO_DB": "intel",
"MONGO_URI": "127.0.0.1",
"MONGO_PORT": "27017",
"MONGO_PASSWORD": "",
"INFLUX_DB": "metric",
"INFLUX_URI": "127.0.0.1",
"INFLUX_PORT": "8086",
"COSUMER_KEY": "",
"COSUMER_SECRET": "",
"ACCEESS_TOKEN_KEY": "",
"ACCEESS_TOKEN_SECRET": ""
}
```
Now let's create some users in the MongoDB shell.
```js
use admin
db.createUser({user: "admin", pwd: "", roles: [{ role: "userAdminAnyDatabase", db: "admin" }] })
use intel
db.createUser({user: "pymongo", pwd: "", roles: [ "readWrite"]})
```
### Run
Now at this time we are ready to run the server.
```sh
./app.py
```