Fully Offline BCrypt Generator

EnthusiastXYZ

Limp Gawd
Joined
Jun 26, 2020
Messages
221
I am looking for a simple app for Windows that can generate BCrypt hashes. There are online "offline" generators, but I want to be completely offline and not dependent on having internet.
 
I am looking for a simple app for Windows that can generate BCrypt hashes. There are online "offline" generators, but I want to be completely offline and not dependent on having internet.
Why not build a node with very secure in and out rules and isolated vlan etc ...
 
Ok, so this is a stupid way to do it, but it's available, so here goes.

Download apache for Windows (so you can get the htpasswd command line utility), I got it from https://www.apachehaus.com/cgi-bin/download.plx I downloaded the first zip and unpacked it, but I also had to download and run the Visual C redistributable installer linked from that page too.

Then you can do something like

Code:
C:\Users\toast\Desktop\Apache24\bin>htpasswd.exe -bnBC 10 "example" password
example:$2y$10$cQWM0Te8dTIw.GsPUScU/OUOe2dK6c8/foJRb7rtPbRVmWMlUOoHi

I don't know if there's a way to convince htpasswd to check a hash, rather than generate one though. If you want more rounds, change the 10 to something else, etc. Also, 2y only has limited support, you might want to rewrite that to 2a?
 
Back
Top