I'm using phpbb 3.0.8 at the moment. It has 3,000 users and around 60,000 posts. I'm changing the forum to a different one, written in classic ASP (I know people are going to disapprove of this but I have good reasons).
My site is written in ASP.net. The classic ASP forum has an API to co开发者_开发技巧nnect to it. I've set all this up, and it works fine. I have written my own login form.
I want to copy all the user accounts over. The current forum has the table:
Username | Password | Hash | Salt
I've overidden the classic ASP hashing technique to now use the ASP.net Security.SHA1
hash. The password is stored as SHA1(rawpassword + salt)
.
My plan is to store new fields along side the current ones:
UserID | Password | Hash | Salt | PHPBBHash
When the user logs in, if the PHPBB hashh field is set, it hashes the password with the PHPBB hash. Then, if login is sucessful, it deletes the PHPBBHash field, and creates the current systems hash values. This way, it's a smooth transition over from PHPBB to the new forum, and no one loses their accounts.
My problem is, given a PHPBB hash, a username, and password, in ASP.net c# how can I verify the PHPBB hash? How does it calculate it?
My concern is also that the classic ASP hash function claimed to be SHA1, but it produced different results to Securiy.SHA1
.
Edit
I've put a bounty on this if anyone can give me a definitive solution, I appreciate the answer linking to the resources but I'm still struggling to understand it.
Test Case
Raw password:
blingblangblaow222
In PHPBB3 database:
username: Tom
username_clean: tom
user_password: $H$9ojo08A3LuhnkXR27p.WK7dJmOdazh0
user_passchg: 1301433947
user_form_salt: 637f480dfdab84ef
Using the example code from Vishalgiris answer, we do this:
phpBB.phpBBCryptoServiceProvider cPhpBB = new phpBB.phpBBCryptoServiceProvider();
string remoteHash = "$H$9ojo08A3LuhnkXR27p.WK7dJmOdazh0";
bool result = cPhpBB.phpbbCheckHash("blingblangblaow222", remoteHash);
Response.Write("<BR><BR><BR>" + result);
This actually returns true. Super! But does anyone know why this works? I'm baffled, it doesn't seem to take salt into account at all.
It appears that PHPBB verifies passwords via the phpbb_check_hash
function in the functions.php
source file. It looks like it typically relies on _hash_crypt_private
to do the real work. The function is 57 lines long (including plenty of whitespace), so it should be relatively straight-forward to convert it to C#.
Seems like your answer is here at phpBB community, however as you already know, it is salted hash so you need to use the function provided in the link to check your password, because the hash will change whenever generated.
Please ignore if you already tried the code provided in the link.
Hope it helps...
One more option would be to create seperate php page/service, to do password hashing or hash validation. to create has use "phpbb_hash" function and to check use "phpbb_check_hash" and these functions can be exposed to ASP or ASP.NET via a page or service.
You can also tweak the current Phpbb system so that it stores a SHA1 hash of the password entered during login. If you run with this tweak a while, you will have most active users covered and that saves you the trouble of implementing the complex algorithm. The not so active users can just request a new password when they can’t login, or you could all give them a new password and mail it to them (you can select them on the last login date stored in the Phpbb database).
Depending on your needs, you might also want to cover the auto login facility of Phpbb. Users that use this feature might not even know their passwords and thus they will have trouble logging into your new system if it does not support auto login.
精彩评论