vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   [release vb2] Database Password Encryption (https://vborg.vbsupport.ru/showthread.php?t=18868)

kdog316 06-04-2001 11:22 PM

it wasnt even there let me see what happens when i add it

kdog316 06-04-2001 11:26 PM

i put it in but it still comes up with the erorr and with the line number of with ? > in it also this ? > is not above the security e-mail

dabean 06-04-2001 11:47 PM

hmm not sure exactly where you have gone wrong then.

rebby 06-05-2001 04:42 PM

in your instructions you have:
Quote:

replace
$users=$DB_site->query("SELECT username,email,password FROM user

with
$users=$DB_site->query("SELECT username,email,password,encryptedpass,userid
with this the email password feature fails.

this change will fix it:
Quote:

replace
$users=$DB_site->query("SELECT username,email,password

with
$users=$DB_site->query("SELECT username,email,password,encryptedpass,userid

rebby 06-05-2001 05:43 PM

this works great with the exception of in the user cp... the Secure password storage is not selected to yes or no by default and even if you select yes, it does nothing to the db... :confused:

it is encrypting passwords for new users taht select to have encrypted passwords from the start though (they can't unencrypted them like you noted though).

dabean 06-05-2001 06:16 PM

Find
PHP Code:

if ($action=="editoptions") {
  
$templatesused "modifyoptions_maxposts,modifyoptions_styleset,modifyoptions_stylecell,usercpnav,modifyoptions";
  include(
"./global.php");
  
// do modify profile form

  
if ($bbuserinfo[userid]==or $permissions['canmodifyprofile']==0) {
    
show_nopermission();
  } 

now after that block add
PHP Code:

  // secure passwords
  
if ($bbuserinfo[encryptedpass]) {
    
$securepasswordchecked="checked";
    
$securepasswordnotchecked="";
  } else {
    
$securepasswordchecked="";
    
$securepasswordnotchecked="checked";
  }
  
// end secure passwords 

find
PHP Code:

  if ($bbuserinfo[userid]==or $permissions['canmodifyprofile']==0) {
    
show_nopermission();
  }

  
$adminemail=iif($allowmail=="yes",1,0); 

change to

PHP Code:

  if ($bbuserinfo[userid]==or $permissions['canmodifyprofile']==0) {
    
show_nopermission();
  }
  
// secure passwords
  
$cryptpassword=iif($securepassword=="yes",1,0);
  
// end secure passwords
  
$adminemail=iif($allowmail=="yes",1,0); 

now find
PHP Code:

  //delete cookies if cookie user is off
  
if ($cookieuser==0) {
    
vbsetcookie("bbuserid","");
    
vbsetcookie("bbpassword","");
  } 

and after it add
PHP Code:

  // secure passwords
  
if ($bbuserinfo[encryptedpass]==1) {
    
// md5 hash password & store todo
    
$cryptpassword=1;
  } else {
    
// 
    
if ($cryptpassword==1) {
      
$DB_site->query("UPDATE user SET password='".addslashes(md5($bbuserinfo[password]))."' WHERE userid='$bbuserinfo[userid]'");
      
// set new hashed cookie
      
vbsetcookie("bbpassword",md5(md5($bbuserinfo[password])));
    }
  }
  
// end secure passwords 

find
PHP Code:

  $DB_site->query("UPDATE user
                   SET "
.$updatestyles."adminemail='$adminemail',
                      showemail='
$showemail',invisible='$invisible',cookieuser='$cookieuser',
                      maxposts='"
.addslashes($umaxposts)."',daysprune='".addslashes($prunedays)."',
                      timezoneoffset='"
.addslashes($timezoneoffset)."',emailnotification='$emailnotification',
                      startofweek='"
.addslashes($startofweek)."',options='$options',receivepm='$receivepm',
                      emailonpm='
$emailonpm',pmpopup='$pmpopup',usergroupid='$bbuserinfo[usergroupid]',
                      nosessionhash='
$nosessionhash'
                   WHERE userid='
$bbuserinfo[userid]'"); 

and change the line to
PHP Code:

  $DB_site->query("UPDATE user
                   SET "
.$updatestyles."adminemail='$adminemail',
                      showemail='
$showemail',invisible='$invisible',cookieuser='$cookieuser',
                      maxposts='"
.addslashes($umaxposts)."',daysprune='".addslashes($prunedays)."',
                      timezoneoffset='"
.addslashes($timezoneoffset)."',emailnotification='$emailnotification',
                      startofweek='"
.addslashes($startofweek)."',options='$options',receivepm='$receivepm',
                      emailonpm='
$emailonpm',pmpopup='$pmpopup',usergroupid='$bbuserinfo[usergroupid]',
                      nosessionhash='
$nosessionhash', encryptedpass='$cryptpassword'
                   WHERE userid='
$bbuserinfo[userid]'"); 

now after
PHP Code:

  if ($newpassword!=$newpasswordconfirm) {
    eval(
"standarderror(\"".gettemplate("error_passwordmismatch")."\");");
    exit;
  } 

add
PHP Code:

 // secure passwords
  
if ($bbuserinfo[encryptedpass]==1) {
    
$newpassword=md5($newpassword);
  }
  
// end secure passwords 

Alternativly download the updated zip file that now contains these additions that i forgot to paste into the orginal file.

rebby 06-05-2001 06:20 PM

what file is that for??? member.php???

dabean 06-05-2001 06:21 PM

member.php

rebby 06-05-2001 06:23 PM

Quote:

Originally posted by dabean
member.php
thanx... i'll give that a go and let you know.. :)

rebby 06-05-2001 06:34 PM

it now encrypts the password (like it should) however the bullet in the user cp does not reflect this...


All times are GMT. The time now is 05:46 AM.

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.01290 seconds
  • Memory Usage 1,781KB
  • 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
  • (10)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete