hasanmerkit Member Licensed customer May 10, 2021 #1 Can I use a special database? If I can use this database, I am thinking of buying. mydatabase = > users password method: md5(real password + salt)
Can I use a special database? If I can use this database, I am thinking of buying. mydatabase = > users password method: md5(real password + salt)
duderuud Well-known member Licensed customer May 10, 2021 #2 What exactly do you want to accomplish? But I think the answer is no. Xenforo uses Bcrypt for user authentication.
What exactly do you want to accomplish? But I think the answer is no. Xenforo uses Bcrypt for user authentication.
K Kirby Well-known member Licensed customer May 10, 2021 #3 You can use any authentication source, but you would have to develop your own authentication class - XenForo does not support this out of the box.
You can use any authentication source, but you would have to develop your own authentication class - XenForo does not support this out of the box.
ManagerJosh Well-known member Licensed customer May 10, 2021 #4 hasanmerkit said: Can I use a special database? If I can use this database, I am thinking of buying. mydatabase = > users password method: md5(real password + salt) View attachment 251594 Click to expand... Please for all things security - DO. NOT. USE. MD5. HASHING. FOR. PASSWORDS. Salted or unsalted. NO MD5!
hasanmerkit said: Can I use a special database? If I can use this database, I am thinking of buying. mydatabase = > users password method: md5(real password + salt) View attachment 251594 Click to expand... Please for all things security - DO. NOT. USE. MD5. HASHING. FOR. PASSWORDS. Salted or unsalted. NO MD5!
hasanmerkit Member Licensed customer May 12, 2021 #5 ManagerJosh said: DO. NOT. USE. MD5. HASHING. FOR. PASSWORDS. Click to expand... Why?
K Kirby Well-known member Licensed customer May 12, 2021 #6 hasanmerkit said: Why? Click to expand... MD5 - Wikipedia en.wikipedia.org
hasanmerkit Member Licensed customer May 12, 2021 #7 Kirby said: MD5 - Wikipedia en.wikipedia.org Click to expand... Okey, d'nt worry about this, i can convert my system to SHA1.
Kirby said: MD5 - Wikipedia en.wikipedia.org Click to expand... Okey, d'nt worry about this, i can convert my system to SHA1.
ManagerJosh Well-known member Licensed customer May 17, 2021 #8 hasanmerkit said: Okey, d'nt worry about this, i can convert my system to SHA1. Click to expand... Please for all things security - DO. NOT. USE. SHA1. HASHING. FOR. PASSWORDS. Salted or unsalted. NO SHA1 EITHER!
hasanmerkit said: Okey, d'nt worry about this, i can convert my system to SHA1. Click to expand... Please for all things security - DO. NOT. USE. SHA1. HASHING. FOR. PASSWORDS. Salted or unsalted. NO SHA1 EITHER!
hasanmerkit Member Licensed customer May 17, 2021 #9 ManagerJosh said: Please for all things security - DO. NOT. USE. SHA1. HASHING. FOR. PASSWORDS. Salted or unsalted. NO SHA1 EITHER! Click to expand... ANYONE CAN HELP ME ABOUT FIRST MESSAGE?
ManagerJosh said: Please for all things security - DO. NOT. USE. SHA1. HASHING. FOR. PASSWORDS. Salted or unsalted. NO SHA1 EITHER! Click to expand... ANYONE CAN HELP ME ABOUT FIRST MESSAGE?
P Paul B XenForo moderator Staff member Licensed customer May 17, 2021 #10 You can't use a different schema without extensive custom development.