Waraxe IT Security Portal
Login or Register
July 6, 2025
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: 64
Members: 0
Total: 64
Full disclosure
iOS Activation Flaw Enables Pre-User Device Compromise andIdentity Exposure (iOS 18.5)
Remote DoS in httpx 1.7.0 – Out-of-Bounds Read via Malformed <title> Tag
CVE-2025-32978 - Quest KACE SMA Unauthenticated LicenseReplacement
CVE-2025-32977 - Quest KACE Unauthenticated Backup Upload
CVE-2025-32976 - Quest KACE SMA 2FA Bypass
CVE-2025-32975 - Quest KACE SMA Authentication Bypass
RansomLord (NG v1.0) anti-ransomware exploit tool
Disclosure Yealink Cloud vulnerabilities
: "Glass Cage" – Zero-Click iMessage ? Persistent iOS Compromise + Bricking (CVE-2025-24085 / 24201, CNVD-2025-07885)
SEC Consult SA-20250612-0 :: Reflected Cross-Site Scripting in ONLYOFFICE Docs (DocumentServer)
SEC Consult SA-20250611-0 :: Undocumented Root Shell Access on SIMCom SIM7600G Modem
Call for Applications: ERCIM STM WG 2025 Award for the Best Ph.D. Thesis on Security and Trust Management (July 31, 2025)
SEC Consult SA-20250604-0 :: Local Privilege Escalation and Default Credentials in INDAMED - MEDICAL OFFICE (Medical practice management) Demo version
Full Disclosure: CVE-2025-31200 & CVE-2025-31201 – 0-Click iMessage Chain ? Secure Enclave Key Theft, Wormable RCE, Crypto Theft
Defense in depth -- the Microsoft way (part 89): user grouppolicies don't deserve tamper protection
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



PCWizardHub - Helping you fix, build, and optimize your PC life
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.039 Seconds