Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 592 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 592 Bytes

pbkdf2-sha256

This repository contains a Go program that concurrently hashes passwords from a file using PBKDF2 with SHA-256 and compares them to a given hash.

It is useful in CTF competitions, such as the Hacker Web Store challenge in NahamCon 2024, when you find a hash and want to perform a rainbow table attack on the provided password list file. You can install it with the following command:

go install github.com/admiralhr99/pbkdf2-sha256@latest

Please pay attention to the hardcoded values for the name of the password list file, salt, iterations, and expected hash.