Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

HabboRE-CMS (HoloCMS-edit for Phoenix 3.6.0) Homes, Groups and more!

Status
Not open for further replies.
Junior Spellweaver
Joined
Jan 19, 2011
Messages
119
Reaction score
5
If this is real, FREAKING AWESOME?!

Yes, it's Real. I have also make an R63 HoloCMS. But the ReCMS is not only Phoenix Compitable it also has comitability with Alpha Series EMulator (from Privilege coded in VB6), UberEmulator and Snowlight.

P.S: I think this CMS is only Compitable with IIS7 right? And: I think this CMS is not the Updated Version like rehotel.st. ReHotel has modify the Index.php
 
[̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅]
Joined
May 4, 2008
Messages
831
Reaction score
741
i think the housekeeping doesnt work for anyone that is using php5.3....

session_is_registered is depreciated in 5.3 and im guessing that thats the reason why it is not working.
 

FCB

Newbie Spellweaver
Joined
Mar 16, 2008
Messages
23
Reaction score
2
At all XAMPP User

This CMS is Only Based on ISS6/7 or higher
 
Newbie Spellweaver
Joined
Feb 10, 2011
Messages
65
Reaction score
6
My cms doesn't work.. alot of errors!!!!!!
 
Junior Spellweaver
Joined
Jun 8, 2008
Messages
174
Reaction score
24
If it's translated pls release, cause i dont speak, which ever language that is...

Thanks,
eMagic
 
Joined
Aug 10, 2010
Messages
304
Reaction score
72
1. HoloCMS is INFESTED with exploits
2. INFESTED!
3. HoloCMS's Housekeeping is amazing <3
4. Having errors, use a webhost
5. INFESTED WITH EXPLOITS


-Mithex
 
Experienced Elementalist
Joined
Sep 19, 2010
Messages
210
Reaction score
74
It's not my CMS but to fix the SQLi's in profile.php, groupsdata.php, me.php (XSS) and whole Housekeeping Folder you don't need much time, its easy.
 
Experienced Elementalist
Joined
Sep 19, 2010
Messages
210
Reaction score
74
To fix the SQL-Exploit in groupsdata.php

Search:

$check = mysql_query("SELECT * FROM group_details WHERE id = '".$_GET['web-group-id']."' LIMIT 1");

And replace it with:

$check = mysql_query("SELECT * FROM group_details WHERE id = '".FilterText($_GET['web-group-id'])."' LIMIT 1");

AND

Search:

$sql123 = mysql_query("SELECT * FROM group_details WHERE id = '".$_GET['id']."' LIMIT 1");

Replace it with:

$sql123 = mysql_query("SELECT * FROM group_details WHERE id = '".FilterText($_GET['id'])."' LIMIT 1");

AND

Search:

$sql123 = mysql_query("SELECT * FROM groups_details WHERE id = '".$_GET['id']."' LIMIT 1");

Replace it with:

$sql123 = mysql_query("SELECT * FROM groups_details WHERE id = '".FilterText($_GET['id'])."' LIMIT 1");

Regards, Imagician.
 
Last edited:
Status
Not open for further replies.
Back
Top