Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0x6470/bitwarden2hashcat
A tool that converts Bitwarden's data into a hashcat-suitable hash
https://github.com/0x6470/bitwarden2hashcat
Last synced: 3 months ago
JSON representation
A tool that converts Bitwarden's data into a hashcat-suitable hash
- Host: GitHub
- URL: https://github.com/0x6470/bitwarden2hashcat
- Owner: 0x6470
- License: bsd-3-clause
- Created: 2020-08-13T14:52:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-17T15:56:29.000Z (almost 3 years ago)
- Last Synced: 2024-04-15T09:25:54.696Z (9 months ago)
- Language: Python
- Size: 34.2 KB
- Stars: 19
- Watchers: 3
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-password-cracking - bitwarden2hashcat - A tool that converts Bitwarden's data into a hashcat-suitable hash. (Conversion)
README
# bitwarden2hashcat
A tool that converts Bitwarden's data into a hashcat-suitable hash## Usage
```
python3 bitwarden2hashcat.py # auto-extraction from local filespython3 bitwarden2hashcat.py data.json # process the file data.json
python3 bitwarden2hashcat.py *.json # process all files with a .json extension
```## Examples
`python3 bitwarden2hashcat.py *.json > m23400_hashes.txt` saves all found hashes in `m23400_hashes.txt``hashcat -a 0 -m 23400 m23400_hashes.txt example.dict`
## Requirements
- Python >= 3.7
- plyvel module## Getting Started
### Windows
`python -m pip install -r requirements_windows.txt`### Linux
`pip3 install -r requirements_linux.txt`## Bugs
Feel free to create an Issue if any bugs occur.