vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   User System on Main Site (https://vborg.vbsupport.ru/showthread.php?t=175535)

Arrangements 04-08-2008 04:42 PM

User System on Main Site
 
I've made the hard choice to have my site's user system synchronize with my vb forum users.

I'm creating the registration page right now on my main site; and I've hit a dead end.

I came to this:
PHP Code:

$encpass sha1SALT $password ); 

I'v defined it:
PHP Code:

define('SALT''something'); 

So my question of problem is, wouldn't the password be encrypted differently on vb then on my mainsite? How does vb encrypt their passwords?


Edit: Okay after doing some searching, I found this
PHP Code:

md5(md5($password) . $salt); 

to be the way vb hash's up the password. Right? Correct me if I'm wrong.

And then $salt needs needs to pulled from vb's database to check the password on my mainsite.

Now here comes the 2nd part Cookies?

Quote:

Originally Posted by https://vborg.vbsupport.ru/showthread.php?t=98047
$_COOKIE:
{cookiepfx}userid - plain(userid)
{cookiepfx}password - md5(md5(md5('PlaintextPassword') . salt) . 'LicenseNo').

Why is it does it use md5() 3 times?

Does that mean when I authenticate their cookie information I need to say.. 'reverse the md5()' once and then I can SELECT?

MoT3rror 04-08-2008 07:25 PM

To encrypt the License number so it isn't as easy to get. Also to change the password from what is stored in the database.

Dismounted 04-09-2008 05:35 AM

Quote:

Originally Posted by Arrangements (Post 1486070)
Why is it does it use md5() 3 times?

So it is more secure.
Quote:

Originally Posted by Arrangements (Post 1486070)
Does that mean when I authenticate their cookie information I need to say.. 'reverse the md5()' once and then I can SELECT?

You can't reverse MD5. MD5 is a one-way hash. To authenticate the cookie, you will need to encrypt the password from the database to the same algorithm.

Arrangements 04-12-2008 05:12 AM

Quote:

Originally Posted by Dismounted (Post 1486475)
So it is more secure.

You can't reverse MD5. MD5 is a one-way hash. To authenticate the cookie, you will need to encrypt the password from the database to the same algorithm.

Oh, why didn't I think of that! Thanks, I hear what you are saying.

NOW, this is what has baffled me!

How do I start? <- simple? No?

- How do make a copy of all of the users on the forum onto my main database, while development, when new users have to be created on the forum? Do disable registration while development?
Edit: [Removed because going off topic of the real question]

Dismounted 04-14-2008 06:18 AM

Quote:

Originally Posted by Arrangements (Post 1488835)
How do make a copy of all of the users on the forum onto my main database, while development, when new users have to be created on the forum? Do disable registration while development?

I'm a bit confused at what you want to do. What you want to do is to convert users, correct? If so, your best option would be to copy some of the users into a test database, then create your conversion script. Test your script on the test database to see if it works correctly, if it does, backup your main database and run your script.


All times are GMT. The time now is 10:38 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00961 seconds
  • Memory Usage 1,730KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete