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!

Web CMS vote page

Newbie Spellweaver
Joined
Oct 22, 2005
Messages
9
Reaction score
0
Hello,

I'm trying to modify a page found in the compiled release (forum.ragezone.com/f690/release-extaliacms-869665/) however editing any of the line of text in the vote.php file causes the page to be totally blank. nothing comes up. is there anyone who can help/knows which part of the php file i should modify?

Thanks in advance!
 
Mythic Archon
Joined
Jul 2, 2013
Messages
723
Reaction score
70
The whole website is encrpyted; you can find a html based decrptor somewhere on google.
 
Upvote 0
Infraction Baɴɴed
Loyal Member
Joined
Apr 9, 2008
Messages
1,416
Reaction score
169
their encryption is hex based
ex:
Code:
a\x6c\x69g\x6e = align
{a}{6c}{69}{g}{6e} = align
 
Upvote 0
Mythic Archon
Joined
Jul 2, 2013
Messages
723
Reaction score
70
their encryption is hex based
ex:
Code:
a\x6c\x69g\x6e = align
{a}{6c}{69}{g}{6e} = align

You could completely hex encrypt your whole website and the server would still be able to read it right?
 
Upvote 0
Infraction Baɴɴed
Loyal Member
Joined
Apr 9, 2008
Messages
1,416
Reaction score
169
doesnt do the variables but gives you an idea of how the page is setup

- as you can tell im not good with regex expressions
 
Upvote 0
Newbie Spellweaver
Joined
Oct 22, 2005
Messages
9
Reaction score
0
Thanks everyone for all the information. i have tried decryption of the vote page it does not return anything However when i look at the page it does not seem to be encrypted.
The part i'm trying to modify is the text box and the button.

PHP:
<div align="center">
<div align="left" class="content">
	<div align="center" class="content-title">Vote</div>
	<div class="content-border">
		<table cellpadding="0" cellspacing="0" width="100%">
			<tr>
				<td valign="top" width="45%">
					Enter your game account name below and vote to gain <font style="color: #f00">1 VP</font>. You are allowed to vote once every 24 hours.
					<br><br><form method="post" action="?true">
						<table>
							<tr>
								<td><b>Username:</b></td>
							</tr>
							<tr>
								<td>
									<div class="textfield">
										<div><input type="text" name="username" maxlength="12"></div>
									</div>
								</td>
							</tr>
							<tr>
								<td><input type="image" src="images/btn-vote.png" alt="Vote"></td>
							</tr>
							We are currently working on this page please be patient with us.
						</table>
					</form>
				</td>
				<td> </td>
				<td valign="top" align="center" width="45%">
					<img src="images/blazewizard.png" alt="">
				</td>
			</tr>
		</table>
		
	</div>
</div>
 
Upvote 0
Mythic Archon
Joined
Jul 2, 2013
Messages
723
Reaction score
70
Thanks everyone for all the information. i have tried decryption of the vote page it does not return anything However when i look at the page it does not seem to be encrypted.
The part i'm trying to modify is the text box and the button.

PHP:
<div align="center">
<div align="left" class="content">
    <div align="center" class="content-title">Vote</div>
    <div class="content-border">
        <table cellpadding="0" cellspacing="0" width="100%">
            <tr>
                <td valign="top" width="45%">
                    Enter your game account name below and vote to gain <font style="color: #f00">1 VP</font>. You are allowed to vote once every 24 hours.
                    <br><br><form method="post" action="http://forum.ragezone.com/?true">
                        <table>
                            <tr>
                                <td><b>Username:</b></td>
                            </tr>
                            <tr>
                                <td>
                                    <div class="textfield">
                                        <div><input type="text" name="username" maxlength="12"></div>
                                    </div>
                                </td>
                            </tr>
                            <tr>
                                <td><input type="image" src="http://forum.ragezone.com/images/btn-vote.png" alt="Vote"></td>
                            </tr>
                            We are currently working on this page please be patient with us.
                        </table>
                    </form>
                </td>
                <td> </td>
                <td valign="top" align="center" width="45%">
                    <img src="http://forum.ragezone.com/images/blazewizard.png" alt="">
                </td>
            </tr>
        </table>
        
    </div>
</div>

If you're talking about the footer, then its in the DNT folder and is encrypted. Use a hex based decryptor like holthelper said
 
Upvote 0
Infraction Baɴɴed
Loyal Member
Joined
Apr 9, 2008
Messages
1,416
Reaction score
169
If you're talking about the footer, then its in the DNT folder and is encrypted. Use a hex based decryptor like holthelper said
this is bottom.php inside DNT
Code:
<?phpecho "<div align=\"center\">
<br>Server time: <span id=\"time\"></span><script type=\"text/javascript\" src=\"js/time.js\"></script>
";
include("status.php");
echo "
<br><br><font size=\"1\">Copyright © 2012 <a href=\"#\">Extalia Network</a>. Some of the graphics belong to NEXON Corporation/Inc.<br>Recoded by <a href=\"http://forum.ragezone.com/members/1333412329.html\">DrServer</a>.</font></div>";
?>

@techo82210
are you referring to the input tag on line 17 and the input image on line 22 of vote.php?
 
Upvote 0
Newbie Spellweaver
Joined
Oct 22, 2005
Messages
9
Reaction score
0
I'm just trying to get the vote button to work actually. Modifying that portion just blanks out the whole page. Even if i just change a small part of the table. The images disappear as well.

<br><br><form method="post" action="?true">
<table>
<tr>
<td><b>Username:</b></td>
</tr>
<tr>
<td>
<div class="textfield">
<div><input type="text" name="username" maxlength="12"></div>
 
Upvote 0
Mythic Archon
Joined
Jul 2, 2013
Messages
723
Reaction score
70
Is that what youre trying to modify? Make sure you properly close off everything in the right place.
 
Upvote 0
Back
Top