Jump to content

Windows MySQL Hasher


Recommended Posts

  • Premium

M2 Download Center

This is the hidden content, please
( Internal )

Hey guys,

 

since i needed a few MySQL Hashes in the last few days i wrote a little tool to convert normal text to a MySQL5 hash.

I'd thought I'd share it, maybe you can need it.

You should need it for account passwords since those are hashed.

Just start the program, type in your password/text to hash, click the button and it will be hashed and also copied to your clipboard.

 

You just need to paste it then.

 

Virustotal: 

This is the hidden content, please

  • Metin2 Dev 1
  • Love 11
Link to comment
Share on other sites

  • Premium

Or you can use a SQL statement to hash the passwords while you set them, like that:

UPDATE account SET password=PASSWORD('your_password') WHERE login='username';

Or you can create an account using almost the same statement:

INSERT INTO account (login, password, ...) VALUES('username', PASSWORD('your_password'), ...);

 

But I think your tool is nice for those who don't want to learn something useful. Nice job.

  • Love 1
Link to comment
Share on other sites

  • 3 weeks later...

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.