[UberCMS] Password Hash Type
hello,
I am going to release something soon but i need 1 awnser!
What kinda HASH type is ubercms using with they passwords
Re: [UberCMS] Password Hash Type
its a salted hash with sha1([salt].[password])
Re: [UberCMS] Password Hash Type
How hard is't to look at the source :S
Code:
public function UberHash($input = '')
{
return sha1($input . $this->config['Site']['hash_secret']);
}
Re: [UberCMS] Password Hash Type
Okay,But is it possible to make md5 for Manage folder?Because its sha1
Re: [UberCMS] Password Hash Type
its md5 encrypted with a sha1 hash
Re: [UberCMS] Password Hash Type
Quick lesson for the few people in this thread who seem to not understand hashing
Hashing is NOT Encryption
Hashing can't be decrypted... it is one way.
Encryption can be decrypted.
Hashing is more secure for things like passwords.
MD5 is one hashing algorithm.
SHA1 is a different hashing algorithm.
MD5 is outdated and not as secure as SHA1.
SHA1 is getting a little dated now.
There are newer hashing algorithms such as SHA2 (which has multiple versions).
Re: [UberCMS] Password Hash Type
Then Why doesn't it won't login me in manage (ubercms housekeeping) Says Invalid Details?But When I use SHA1 Hash It will let me.
Re: [UberCMS] Password Hash Type
Quote:
Originally Posted by
pabiboy
Then Why doesn't it won't login me in manage (ubercms housekeeping) Says Invalid Details?But When I use SHA1 Hash It will let me.
Need help?
Re: [UberCMS] Password Hash Type
Quote:
Originally Posted by
cecer1
[B][U]Quick lesson for the few people in
Hashing can't be decrypted... it is one way.
That's not true.
You have to find out how the hash code works, but if you know that you can decrypt it.
Re: [UberCMS] Password Hash Type
It's one way like cecer says. You can only run hashes through rainbow tables to have a chance to find the plain text string. Authentication using hashes works like this:
You compare the plain text input hash with the hashed string in the database by hashing the input. So, you're comparing the hashes. It's secure, but because of all the rainbow tables on the internet it's more secure to use a salt and a combination of sha1 and md5.
Re: [UberCMS] Password Hash Type
Quote:
Originally Posted by
cecer1
Quick lesson for the few people in this thread who seem to not understand hashing
Hashing is NOT Encryption
Hashing can't be decrypted... it is one way.
Encryption can be decrypted.
Hashing is more secure for things like passwords.
MD5 is one hashing algorithm.
SHA1 is a different hashing algorithm.
MD5 is outdated and not as secure as SHA1.
SHA1 is getting a little dated now.
There are newer hashing algorithms such as SHA2 (which has multiple versions).
if you know this then you should know about rainbow tables ;)
Re: [UberCMS] Password Hash Type
Quote:
Originally Posted by
cecer1
Quick lesson for the few people in this thread who seem to not understand hashing
Hashing is NOT Encryption
Hashing can't be decrypted... it is one way.
Encryption can be decrypted.
Hashing is more secure for things like passwords.
MD5 is one hashing algorithm.
SHA1 is a different hashing algorithm.
MD5 is outdated and not as secure as SHA1.
SHA1 is getting a little dated now.
There are newer hashing algorithms such as SHA2 (which has multiple versions).
Hashing can't be decrypted... it is one way.
your incorrent on that ^
Re: [UberCMS] Password Hash Type
Quote:
Originally Posted by
OneEye
Hashing can't be decrypted... it is one way.
your incorrent on that ^
Actually you can't decrypt a hash, you can only go on based by Rainbow Tables, and even then it is impossible because the whole idea of using a Secret Key makes Rainbow Tables impossible.
If hashs could be decrypted in a simple easy step, then it would make sense to save passwords unencrypted.
Re: [UberCMS] Password Hash Type
Quote:
Originally Posted by
matty13
Actually you can't decrypt a hash, you can only go on based by Rainbow Tables, and even then it is impossible because the whole idea of using a Secret Key makes Rainbow Tables impossible.
If hashs could be decrypted in a simple easy step, then it would make sense to save passwords unencrypted.
not if you have the salt...you must have the salt to "decrypt" salted hashes...
Re: [UberCMS] Password Hash Type
Can someone try to get the ubercms housekeeping working with a md5 hash?
Thanks