Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
  #1  
Old 10-06-2003, 03:05 AM
Snapperhaed Snapperhaed is offline
 
Join Date: Mar 2003
Location: Argentina
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No help here yet eh. Same on VBulletin.Com ... Still been pecking at it all weekend and I came to the conclusion that all info given here and Vbull.Com is wrong. It almost seems like its some big secret since none of the 'big wigs' are willing to chime in and straighten out the many who have asked the same thing.

The theory of the new changed hashing is:

MD5 the Normal Password (1st MD5)
Add the Salt to the end of the MD5 above and MD5 it (2nd MD5)

Guess what. That simply does not work, even when using this to make the salt:

// ###################### Start makesalt #######################
// generates a totally random string of $length chars
function vbulletin_addedsalt($length = 3)
{
$salt = '';
for ($i = 0; $i < $length; $i++)
{
$salt .= chr(rand(32, 126));
}
return $salt;
}

(The above deriven from /includes/functions.php)

Heres the excerpt from the code ive been working on:

$q = $db->query("SELECT password, usergroupid
FROM {$vb_db}user
WHERE username='$member[login]'
");
list($p,$ul) = mysql_fetch_row($q);
$dat = date('M d, Y');
// The following is a new variable to set the passworddate
$pde = date('Y d, M');

// Beginning of Salt Routine Ripped from VB3 /includes/functions.php

$saltlength = 3;
$salt = '';
for ($i = 0; $i < $saltlength; $i++)
$salt .= chr(rand(32, 126));

// End of Salt Routine Random Generation

// First Normal Password Hash

$pass = md5($member['pass']);

// ReName the Variable Here for Next Hash

$pash = $pass;

// Add some Salt and Hash it again

$pass = md5($pash) . $salt;

// End of New MD5 Dual Hash Routine

if (!$ul){ //user not exists
$db->query($s = "INSERT INTO {$vb_db}user
(usergroupid, displaygroupid, username, password, passworddate, email, styleid, parentemail, showvbcode,
customtitle, joindate, daysprune, lastvisit, lastactivity, lastpost, posts, reputation, reputationlevelid,
timezoneoffset, pmpopup, avatarid, avatarrevision, options, maxposts, startofweek, referrerid, languageid,
emailstamp, threadedmode, autosubscribe, pmtotal, pmunread, salt)

VALUES

($max, $max, '$member[login]', '$pass', '$pde', '$member[email]', 0, '$member[email]', 1,
0, unix_timestamp(), -1, unix_timestamp(), unix_timestamp(), 0, 0, 10, 5,
-7, 1, 0, 0, 7255, -1, 1, 0, 1,
0, 0, 0, 0, 0, '$salt')");

$vb_user_id = mysql_insert_id();
$db->query($s = "INSERT INTO {$vb_db}userfield
(userid) VALUES ($vb_user_id)
");

Maybe it does work, and my code is bad. I cant seem to find it anywhere if it is. Would be nice for someone who actually knows that their doing (and what their talking bout) to step up and offer some assistance. It'd sure be appreciated.

Just to clarify what it is I am doing:

The user comes to MY php application and creates himself an account. Upon doing so, my app sends the data to the SQL database of VBull and creates himself an account there. The user -never- registers directly via VBull. The above script that I have posted works, but the password is wrong. To obtain having the correct password, you dont do 2 seperate pass hashes, you do one:

IE: $pass = md5(md5($member['pass']) . $salt);

That works just fine. However - When a user goes to VBull, and is asked for his username and password, he enters it, hes told its been accepted and goes to redirect him to the main forums page, the screen scroll bar (normally located on the far right of all browsers), is moved to the left, and is asked to login again, with the text and formatting of the forums changed and frankly, bassackwards. Damnedest thing ive ever seen.

Lil help to resolve this driving-me-crazy-having-self-taught-myself-this-and-working-on-it-all-weekend-to-get-this-far-and-still-be-this-short problem?!

Thanks to any assistance you can provide me.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:59 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.04458 seconds
  • Memory Usage 2,199KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)showthread_list
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_threadedmode.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids_threaded
  • showthread_threaded_construct_link
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete