Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
Convert - Illumina 2.0.2 Zap to RevCMS [ Help ]
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="JayC" data-source="post: 370318" data-attributes="member: 36373"><p>BTW he says "I'm using IlluminaCMS" meaning he doesn't want rev to encrypt with username he wants to remove that extra encryption and just do MD5. Do you even read before you open your mouth?</p><p></p><p>Okay since your little brain doesn't comprehend how coding works, I am going to break this down EVEN SMALLER so this little guy here Josh can understand.</p><p></p><p>Illuminia CMS current encryption:</p><p>[CODE]public function userHash($password, $username)</p><p>{</p><p>return sha1(md5($password) . strtolower($username));</p><p>}</p><p>}[/CODE]</p><p></p><p>RevCMS current Encryption:</p><p>[CODE]final public function hashed($password) {</p><p>return md5($password);</p><p>}[/CODE]</p><p></p><p>Okay so we are on illuminia now, so picture a nice illuminia cms register page</p><p>Little Tommy comes along and registers. He puts in his username and his repeated password and presses "Register"</p><p></p><p>So the PHP code says OH! Tommy ! Let me insert you into my database</p><p>So it calls the hash method and says sha1(md5($password) . strtolower($username));</p><p>So now this is what we did:</p><p>Tommys Password -> MD5 Encryption -> takes username lowercase and adds to tommys encrypted password -> SHA1 the whole string</p><p></p><p>So now we have tommys great SHA1 + MD5 Encrypted password sitting in my database.</p><p></p><p>Now here is what I don't understand, he clearly states that he wants to remove all the extra encryption that happens and just do MD5 encryption that RevCMS does</p><p></p><p><strong>How do I convert Illumina Users Hashing, to RevCMS, so users don't have to make a new account.</strong></p><p></p><p>Meaning that little tommys SHA1 + MD5 password needs to REMOVE the SHA1</p><p></p><p>So how do we do that?</p><p></p><p>Follow my previous steps ^_^</p></blockquote><p></p>
[QUOTE="JayC, post: 370318, member: 36373"] BTW he says "I'm using IlluminaCMS" meaning he doesn't want rev to encrypt with username he wants to remove that extra encryption and just do MD5. Do you even read before you open your mouth? Okay since your little brain doesn't comprehend how coding works, I am going to break this down EVEN SMALLER so this little guy here Josh can understand. Illuminia CMS current encryption: [CODE]public function userHash($password, $username) { return sha1(md5($password) . strtolower($username)); } }[/CODE] RevCMS current Encryption: [CODE]final public function hashed($password) { return md5($password); }[/CODE] Okay so we are on illuminia now, so picture a nice illuminia cms register page Little Tommy comes along and registers. He puts in his username and his repeated password and presses "Register" So the PHP code says OH! Tommy ! Let me insert you into my database So it calls the hash method and says sha1(md5($password) . strtolower($username)); So now this is what we did: Tommys Password -> MD5 Encryption -> takes username lowercase and adds to tommys encrypted password -> SHA1 the whole string So now we have tommys great SHA1 + MD5 Encrypted password sitting in my database. Now here is what I don't understand, he clearly states that he wants to remove all the extra encryption that happens and just do MD5 encryption that RevCMS does [B]How do I convert Illumina Users Hashing, to RevCMS, so users don't have to make a new account.[/B] Meaning that little tommys SHA1 + MD5 password needs to REMOVE the SHA1 So how do we do that? Follow my previous steps ^_^ [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Convert - Illumina 2.0.2 Zap to RevCMS [ Help ]
Top