Unstoppable Domains

vBulletin Encryption Info

Spaceship Spaceship
Watch

SupaJ

Established Member
Impact
0
Hello all..

I want to intergrate the registration from my site and the forums into one and I need to know how to encrypt the password for the forums, and what other things you need to know about the vbulletin registrar.

My site is coded in Coldfusion (.cfm)

Help is much, much appreciated.
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
Hello,

So you want to learn how to encrypt passwords using CFM?
Or how VB does it? Or are you trying to create a login form to your VB board on your website.

iNod
 
0
•••
I'm trying to intergrate the registration from our site in CFM and have it add the user names to the vBulletin Database, but I don't know how to encrypt the password the way vBulletin does it. I can encrypt it via CF but it doesn't do it the same way.
 
0
•••
0
•••
<cfset hash1 = "#hash('lakisic1')# . salt">
<cfset hash2 = "#hash(hash1)# . licensenumber">
<cfoutput>#hash(hash2)#</cfoutput>

That's what I tried. Any other ideas?
 
0
•••
I don't think you shouldn't add a salt. The Hash function uses MD5.
For example if you want to authenticate a user based on the vbulletin user DB you should do something like:

PHP:
<cfif Hash([pwd entered by user]) is not [value of hashed pwd in database]>
  <cflocation url = "failed.cfm">
<cfelse>
  <cflocation url = "success.cfm">
</cfif>
 
0
•••
Still didn't work mate :(
 
0
•••
vBulletin hashes their passwords twice and uses a salt. What I would recomment doing is creating a simple php file and include it in your cold fusion pages something like this:
vbpass.php?pass=sendthis

Then in vbpass.php just do the same encryption method that vBulletin uses in their register.php file.
 
0
•••
Dynadot — .com Registration $8.99Dynadot — .com Registration $8.99

We're social

Unstoppable Domains
Domain Recover
DomainEasy — Live Options
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back