Hi all!
I created the project in VS MVC with standard template. register several users.
Then, I take away the database and run some query in the SQL Management.
I'm running a query on users, and get all data of the users who have registered, but only the names, without passwords.
Question:
How can I see and passwords of registered accounts?
What query I can need to run that view password of registered users?
Thank you In Advance.
Wim SturkenboomPosted Sep 19, 2014, 2:31 AM
Can you paste one or two passwords from the database as text so I can eliminate typing mistakes?
You're talking about symbols; I guess two symbols is one byte? If so, you have 34 bytes. This might imply 32 bytes hash and 2 bytes of something else (e.g. check).
Can you paste the 68 symbol 'string' as text as well as the resulting password in the database as text?
Be aware that password hashes can be complex and password cracking software can take ages to crack a well implemented algorithm for hashing of a strong password. I suggest that you read up on password hashing; one article that might explain a little why it might take a long time to crack a password (and the difficulties that password cracking software face) is www.codeproject.com/Articles/704865/Salted-Password-Hashing-Doing-it-Right and there are probably plenty more.
If you want to protect your passwords, you want strong algorithms and force users to use strong passwords; it looks like you have succeeded there ;) As a cracker, you basically want weak algorithms and weak passwords.
Morris ElkanaevPosted Sep 18, 2014, 10:04 AM
Wim SturkenboomPosted Sep 18, 2014, 2:09 AM
base64 not work
[/quote]Can you elaborate?
Did you write some code? Show it!
Morris ElkanaevPosted Sep 17, 2014, 7:40 PM
Wim SturkenboomPosted Sep 17, 2014, 3:28 PM
Morris ElkanaevPosted Sep 17, 2014, 2:34 PM
Morris ElkanaevPosted Sep 17, 2014, 2:29 PM
Thank you Sumit!
Guest UserPosted Sep 17, 2014, 12:51 PM