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
UberCMS, No Hash Secret! ??
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="42u" data-source="post: 227183" data-attributes="member: 36761"><p>Good afternoon Jakob. Re-reading my previous posts, I defiantly should of went to bed earlier lol.</p><p>RevCMS is what I'm using, so my knowledge of UberCMS is little to none, but seeing as no one else has replied I'll explain further.</p><p>Okay so lets get this problem resolved. Ignore all my previous posts.</p><p> </p><p>RevCMS and UberCMS are hashed differently.</p><p>RevCMS used Md5. UberCMS uses sha1.</p><p>You're going to need to change RevCMS to read sha1 hashs instead of Md5.</p><p> </p><p>First off try just using this hash code and see what happens.</p><p>[code]xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh[/code]</p><p>If that isn't working, delete it and save the file as it was before.</p><p> </p><p>Second try this</p><p>1. In your database, find the user table and copy the password hash from your account.</p><p>2. In class.core.php of RevCMS you will see this</p><p>[code]</p><p>final public function hashed($password)</p><p>{</p><p>return sha1($password);</p><p>}</p><p>[/code]</p><p>Change that to</p><p>[code]</p><p>final public function hashed($password)</p><p>{</p><p> return sha1($password . "PUTHASHHERE");</p><p>}</p><p>[/code]</p><p> </p><p>Or just register a new account and see if that works lol.</p></blockquote><p></p>
[QUOTE="42u, post: 227183, member: 36761"] Good afternoon Jakob. Re-reading my previous posts, I defiantly should of went to bed earlier lol. RevCMS is what I'm using, so my knowledge of UberCMS is little to none, but seeing as no one else has replied I'll explain further. Okay so lets get this problem resolved. Ignore all my previous posts. RevCMS and UberCMS are hashed differently. RevCMS used Md5. UberCMS uses sha1. You're going to need to change RevCMS to read sha1 hashs instead of Md5. First off try just using this hash code and see what happens. [code]xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh[/code] If that isn't working, delete it and save the file as it was before. Second try this 1. In your database, find the user table and copy the password hash from your account. 2. In class.core.php of RevCMS you will see this [code] final public function hashed($password) { return sha1($password); } [/code] Change that to [code] final public function hashed($password) { return sha1($password . "PUTHASHHERE"); } [/code] Or just register a new account and see if that works lol. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
UberCMS, No Hash Secret! ??
Top