Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyclone-github/base64_2_pbkdf2sha1
Tool to convert base64 encoded strings to PBKDF2-HMAC-SHA1
https://github.com/cyclone-github/base64_2_pbkdf2sha1
base64 cracking cyclone go golang hash hashcat hmac pbkdf2 pbkdf2-hmac-sha1 sha1
Last synced: about 2 months ago
JSON representation
Tool to convert base64 encoded strings to PBKDF2-HMAC-SHA1
- Host: GitHub
- URL: https://github.com/cyclone-github/base64_2_pbkdf2sha1
- Owner: cyclone-github
- License: gpl-2.0
- Created: 2023-02-17T01:15:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T18:19:44.000Z (8 months ago)
- Last Synced: 2024-06-21T19:53:38.504Z (6 months ago)
- Topics: base64, cracking, cyclone, go, golang, hash, hashcat, hmac, pbkdf2, pbkdf2-hmac-sha1, sha1
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=cyclone-github&repo=base64_2_pbkdf2sha1&theme=gruvbox)](https://github.com/cyclone-github/)
## Cyclone's base64 to PBKDF2-HMAC-SHA1 hash converter
Program to convert base64 encoded strings to PBKDF2-HMAC-SHA1 (hashcat -m 12000).### Example Usage:
- ./base64_2_pbkdf2sha1.bin -i base64.txt### Compile from source:
- If you want the latest features, compiling from source is the best option since the release version may run several revisions behind the source code.
- This assumes you have Go and Git installed
- `git clone https://github.com/cyclone-github/base64_2_pbkdf2sha1.git`
- `cd base64_2_pbkdf2sha1`
- `go mod init base64_2_pbkdf2sha1`
- `go mod tidy`
- `go build -ldflags="-s -w" .`
- Compile from source code how-to:
- https://github.com/cyclone-github/scripts/blob/main/intro_to_go.txt