Waraxe IT Security Portal
Login or Register
November 1, 2024
Menu
Home
Logout
Discussions
Forums
Members List
IRC chat
Tools
Base64 coder
MD5 hash
CRC32 checksum
ROT13 coder
SHA-1 hash
URL-decoder
Sql Char Encoder
Affiliates
y3dips ITsec
Md5 Cracker
User Manuals
AlbumNow
Content
Content
Sections
FAQ
Top
Info
Feedback
Recommend Us
Search
Journal
Your Account
User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144

People Online:
Visitors: 72
Members: 0
Total: 72
Full disclosure
xlibre Xnest security advisory & bugfix releases
APPLE-SA-10-29-2024-1 Safari 18.1
SEC Consult SA-20241030-0 :: Query Filter Injection in Ping Identity PingIDM (formerly known as ForgeRock Identity Management) (CVE-2024-23600)
SEC Consult SA-20241023-0 :: Authenticated Remote Code Execution in Multiple Xerox printers (CVE-2024-6333)
APPLE-SA-10-28-2024-8 visionOS 2.1
APPLE-SA-10-28-2024-7 tvOS 18.1
APPLE-SA-10-28-2024-6 watchOS 11.1
APPLE-SA-10-28-2024-5 macOS Ventura 13.7.1
APPLE-SA-10-28-2024-4 macOS Sonoma 14.7.1
APPLE-SA-10-28-2024-3 macOS Sequoia 15.1
APPLE-SA-10-28-2024-2 iOS 17.7.1 and iPadOS 17.7.1
APPLE-SA-10-28-2024-1 iOS 18.1 and iPadOS 18.1
Open Redirect / Reflected XSS - booked-schedulerv2.8.5
SEC Consult SA-20241024-0 :: Unauthenticated Path Traversal Vulnerability in Lawo AG - vsm LTC Time Sync (vTimeSync) (CVE-2024-6049)
[RESEARCH] DTLS 'ClientHello' Race Conditions in WebRTCImplementations
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PHP script decode requests -> please decode this one<33
Post new topicReply to topic View previous topic :: View next topic
please decode this one<33
PostPosted: Mon Jun 07, 2010 4:29 pm Reply with quote
Aerosis
Beginner
Beginner
Joined: Jun 07, 2010
Posts: 2




http://www.multiupload.com/GZ9KJNW8Z6
both files in the rar. please decode em
View user's profile Send private message
PostPosted: Mon Jun 07, 2010 5:01 pm Reply with quote
vince213333
Advanced user
Advanced user
Joined: Aug 03, 2009
Posts: 737
Location: Belgium




Index.php:

Code:
<?php
echo '<center>
';
require_once('config.php');
echo"
<title>$Site[title]</title>";
echo '

<style>
body {
background:#000000 url(zeko/bg.gif);background-repeat: background-position:center;

}
</style>

<img src="zeko/zeko2010ss.gif"><br>
<a href="index.php"><input type=\'image\' src="zeko/reg.png"></a>
<a href="pass.php"><input type=\'image\' src="zeko/pass.png"></a>


';
require_once('config.php');
echo '
';
error_reporting(0);
switch ($_POST["operation"]) {
case "register": registerAccount(); break;
default: printHTML();
}

/*
Registration Function
*
**
***/
function registerAccount() {
if(!$_POST["user"]) { printHTML("Username Field Empty!"); die(); }
if(!ereg("^[0-9a-zA-Z]{4,15}$",$_POST["user"])) { printHTML("You may only use letters or numbers, with a length of 4 to 15 for the username!"); die(); }
if(!$_POST["pass1"]) { printHTML("First Password Field Empty!"); die(); }
if(!$_POST["pass2"]) { printHTML("Second Password Field Empty!"); die(); }
if(!ereg("^[0-9a-zA-Z]{4,15}$",$_POST["pass1"])) { printHTML("You may only use letters or numbers, with a length of 4 to 15 for the password!"); die(); }
if($_POST["pass1"]!=$_POST["pass2"]) { printHTML("Passwords do not match!"); die(); }
$temp["result"] = mysql_fetch_array(mysql_query(sprintf("SELECT * FROM accounts WHERE AccountID='%s'", mysql_real_escape_string($_POST["user"]))));
if($temp["result"]) { printHTML("Username already exists!"); die(); }
if(!$_POST["sid"]) { printHTML("Secret ID Number Field Empty!"); die(); }
$temp["query"] = sprintf("INSERT INTO accounts(AccountID,Email,SecretNumber) VALUES ('%s','%s','%s')",
mysql_real_escape_string($_POST["user"]), mysql_real_escape_string($_POST["email"]), mysql_real_escape_string($_POST["sid"]));
if (!mysql_query($temp["query"])) { die(mysql_error()); }
else { printHTML("Registration Successful!"); }
}
/*
Print HTML
*
**
***/
function printHTML($output) {
echo '<body><div id="container">
<form action="index.php" method="post" class="niceform">
<input type="hidden" name="operation" value="register" />
';
if($output) {
echo ' <dl>
<dt><label for="out"> ;;</label></dt>
<dd><label for="out"><strong><b>'; print($output);
echo '</b></strong></label></dd>
</dl>

'; }
echo '
<dl>
<dt><label for="user">Username:</label></dt>
<dd><input type="text" name="user" id="user" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="pass1">Password:</label></dt>
<dd><input type="password" name="pass1" id="pass1" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="pass2">Confirm Password:</label></dt>
<dd><input type="password" name="pass2" id="pass2" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="email">E-Mail:</label></dt>
<dd><input type="text" name="email" id="email" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="sid">ID Number:</label></dt>
<dd><input onkeypress="return onlyNumbers(event);" type="password" name="sid" id="sid" size="32" maxlength="8" /></dd>
</dl>
<dl>
<dt><label for="submit"> ;;</label></dt>
<dd><input type="submit" name="submit" id="submit" value="Submit" /></dd>
</dl>

</form>
</div>
';
}

echo '

<br><br>
<img src="zeko/me.png">

<br><br>
<h2>';
require_once('config.php');
echo"
Copyright © 2010 </span><a href='$Server[url]'><font color=#5218FA>$Server[name]</font></a> <span class='style1'>|| Designed by</span> <a
href='http://zeko2010ss.ucoz.com'><font color=#5218FA>Zeko2010ss</font></a>";
echo '</h2>

</center>';
?>
View user's profile Send private message
PostPosted: Mon Jun 07, 2010 5:03 pm Reply with quote
vince213333
Advanced user
Advanced user
Joined: Aug 03, 2009
Posts: 737
Location: Belgium




Pass.php:

Code:
<?php
echo '<center>
';
require_once('config.php');
echo"
<title>$Site[title]</title>";
echo '
<style>
body {
background:#000000 url(zeko/bg.gif);background-repeat: background-position:center;

}
</style>

<img src="zeko/zeko2010ss.gif"><br>
<a href="index.php"><input type=\'image\' src="zeko/reg.png"></a>
<a href="pass.php"><input type=\'image\' src="zeko/pass.png"></a>


';
require_once('config.php');
echo '
';
error_reporting(0);
switch ($_POST["operation"]) {
case "changepass": changePassword(); break;
default: printHTML();
}

/*
Registration Function
*
**
***/
function changePassword() {
if(!$_POST["user"]) { printHTML("Username Field Empty!"); die(); }
if(!ereg("^[0-9a-zA-Z]{4,15}$",$_POST["user"])) { printHTML("You may only use letters or numbers, with a length of 4 to 15 for the username!"); die(); }
if(!$_POST["email"]) { printHTML("E-mail Field Empty!"); die(); }
if(!$_POST["sid"]) { printHTML("Secret ID Number Field Empty!"); die(); }
if(!$_POST["pass1"]) { printHTML("New Password Field Empty!"); die(); }
if(!$_POST["pass2"]) { printHTML("Confirm Password Field Empty!"); die(); }
if(!ereg("^[0-9a-zA-Z]{4,15}$",$_POST["pass1"])) { printHTML("You may only use letters or numbers, with a length of 4 to 15 for the password!"); die(); }
if($_POST["pass1"]!=$_POST["pass2"]) { printHTML("Passwords do not match!"); die(); }
$query = "SELECT * FROM accounts WHERE AccountID='$_POST[user]' AND Email='$_POST[email]' AND SecretNumber='$_POST[sid]'";
$result=mysql_query($query);
$rows=mysql_num_rows($result);

if(!$rows) { printHTML("incorrect account information !"); die(); }

$temp["query"] = sprintf("UPDATE accounts SET Password='' WHERE AccountID='$_POST[user]'");
if (!mysql_query($temp["query"])) { die(mysql_error()); }
else { printHTML("Password Modification Successful"); }
}
/*
Print HTML
*
**
***/
function printHTML($output) {
echo '<body><div id="container">
<form action="pass.php" method="post" class="niceform">
<input type="hidden" name="operation" value="changepass" />
';
if($output) {
echo '
<dl>
<dt><label for="out"> ;;</label></dt>
<dd><label for="out"><strong><b>'; print($output); ;echo '</b></strong></label></dd>
</dl>

';
}
echo '
<dl>
<dt><label for="user">Username:</label></dt>
<dd><input type="text" name="user" id="user" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="email">E-mail:</label></dt>
<dd><input type="text" name="email" id="email" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="sid">ID Number:</label></dt>
<dd><input onkeypress="return onlyNumbers(event);" type="password" name="sid" id="sid" size="32" maxlength="8" /></dd>
</dl>
<dl>
<dt><label for="pass1">New Password:</label></dt>
<dd><input type="password" name="pass1" id="pass1" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="pass2">Confirm New Password:</label></dt>
<dd><input type="password" name="pass2" id="pass2" size="32" maxlength="15" /></dd>
</dl>
<dl>
<dt><label for="submit"> ;;</label></dt>
<dd><input type="submit" name="submit" id="submit" value="Submit" /></dd>
</dl>

</form>
</div>
';
}

echo '



<br><br>
<img src="zeko/me.png">

<br><br>
<h2>';
require_once('config.php');
echo"
Copyright © 2010 </span><a href='$Server[url]'><font color=#5218FA>$Server[name]</font></a> <span class='style1'>|| Designed by</span> <a
href='http://zeko2010ss.ucoz.com'><font color=#5218FA>Zeko2010ss</font></a>";;echo '</h2>

</center>';
?>
View user's profile Send private message
PostPosted: Mon Jun 07, 2010 5:16 pm Reply with quote
Aerosis
Beginner
Beginner
Joined: Jun 07, 2010
Posts: 2




thank you:)<33
View user's profile Send private message
please decode this one<33
www.waraxe.us Forum Index -> PHP script decode requests
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT
Page 1 of 1

Post new topicReply to topic


Powered by phpBB © 2001-2008 phpBB Group



Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2024 Janek Vind "waraxe"
Page Generation: 0.036 Seconds