Waraxe IT Security Portal
Login or Register
June 26, 2026
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: 135
Members: 0
Total: 135
Full disclosure
OpenBSD mpls_do_error: Remote Kernel Stack Disclosure via MPLS Label Stack Over-read
OpenBSD sppp_pap_input: PAP authentication bypass
SEC Consult SA-20260618-0 :: Hardcoded Root Cloud Credentials in Application Binaries in Silver Leaf Technologies - Worksnaps.net Worksnaps
SEC Consult SA-20260617-1 :: Multiple Vulnerabilities in Quanos Content Solutions - SCHEMA ST4
SEC Consult SA-20260617-0 :: Multiple Critical Vulnerabilities in Sprecher Automation SPRECON-E-C/-E-P/-E-T3
SEC Consult SA-20260616-0 :: Broken Access Control in syracom AG Secure Login (2FA) for Atlassian Jira / Confluence / Bitbucket #CVE-2026-12225
APPLE-SA-06-16-2026-1 Beats Firmware Update 1B211
PHP 8.5.7 `levenshtein()` signed-integer overflow
PHP 8.5.7 `dom_xml_serialization_al gorithm()` stack-overflow
PHP 8.5.7 `mb_substr()` 'SJIS-mac' size_t underflow
PHP 8.5.7 `FILTER_SANITIZE_ENCODED` uninitialized read
CVE-2025-68624: Cross-Tenant Authentication Bypass by Spoofing in N-able Mail Assure
SEC Consult SA-20260615-1 :: Multiple Vulnerabilities in Wertheim SafeController Hardware for VAULT ROOMS (Safe Deposit Locker System – Microcontroller)
SEC Consult SA-20260615-0 :: Multiple Critical Vulnerabilities in Wertheim SafeController Software for VAULT ROOMS (Safe Deposit Locker System)
SEC Consult SA-20260610-0 :: Local Privilege Escalation in Slate Digital Connect (macOS)
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Php -> Please help me decode(
Post new topicReply to topic View previous topic :: View next topic
Please help me decode(
PostPosted: Sun Sep 30, 2012 12:17 pm Reply with quote
sarik1986
Regular user
Regular user
Joined: Jul 02, 2012
Posts: 10




Hello.please help me decode file.i decoded with NWS decode but not work.someone please can decode it?

http://pastebin.com/YHW67sr9
http://pastebin.com/SvmaRmdz
http://pastebin.com/u6P9GtaC
View user's profile Send private message
PostPosted: Sun Sep 30, 2012 12:47 pm Reply with quote
demon
Moderator
Moderator
Joined: Sep 22, 2010
Posts: 485




i think all files are the same ?
Code:
<?php
function main()
{
include("../conn.php");
include("../message.php");
$emailquery = mysql_query("select * from zw_websetting");
$emailfetch = mysql_fetch_array($emailquery);
$webname = $emailfetch['webname'];
$defaultcurrency = $emailfetch['currency'];
$userid = mysql_real_escape_string($_SESSION['userid']);
$page_record = mysql_real_escape_string($_REQUEST['page_record']);
$total_records = mysql_real_escape_string($_REQUEST['total_records']);
$pageno = mysql_real_escape_string($_REQUEST['pageno']);
$rs0 = mysql_fetch_array(mysql_query("select * from zw_websetting"));
$pagelimits = $rs0['rec_per_page'];
$records_per_page = $pagelimits;
if (isset($_REQUEST['cur_page'])) {
$page_num = $_REQUEST['cur_page'] + 1;
} else {
$page_num = $cur_page + 1;
}
$cur_page = $_REQUEST['cur_page'];
$str = mysql_query("select * from messages where to_user_id='{$userid}' order by sent_on desc");
$str_num = mysql_num_rows($str);
$query_data = mysql_fetch_array($str);
$total_num_page = ceil(mysql_num_rows($str) / $records_per_page);
if (empty($cur_page)) {
$cur_page = 0;
}
$limit_str = "LIMIT " . $cur_page * $records_per_page . ",{$records_per_page}";
if (!($inbox_messages = mysql_query("select * from messages where to_user_id='{$userid}' order by sent_on desc {$limit_str}"))) {
exit(mysql_error());
}
$num_rows = mysql_num_rows($inbox_messages);
echo "<div class=\"mainheading_mem\" style=\"margin-bottom:10px;\" align=\"left\">My Messages List &raquo;Inbox</div>\r\n<div style=\"float:right\"> ";
echo "<s";
echo "pan class=\"alink\"><a href=\"member_create_msg.php\">Create Message</a> ;; <a href=\"member_sent.php\">Sent</a></span></div>\r\n\r\n";
if (mysql_real_escape_string($_REQUEST['send']) == "msg_deleted") {
echo "<span class='messagesred'>Message deleted successfully</span>";
}
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"tbl_bdr\">\r\n<form action=\"member_inbox.php\" method=\"post\" name=\"member_inbox\" id=\"member_inbox\">\r\n<tr class=\"sde_mnu_hdr_blue\">\r\n<td width=\"9%\" height=\"32\" align=\"center\" valign=\"middle\" style=\"padding-left:5px;\">";
echo "<s";
echo "trong>S.No</strong></td>\r\n<td width=\"23%\" align=\"left\" valign=\"middle\" style=\"padding-left:5px;\">";
echo "<s";
echo "trong>Sender Name </strong></td>\r\n<td height=\"32\" align=\"center\" valign=\"middle\" style=\"padding-left:5px;\">";
echo "<s";
echo "trong>Sent Date </strong></td>\r\n<td height=\"29\" colspan=\"2\" align=\"left\" valign=\"middle\" style=\"padding-left:5px;\">";
echo "<s";
echo "trong>Subject</strong></td>\r\n<td height=\"29\" colspan=\"2\" align=\"center\" valign=\"middle\" style=\"padding-left:5px;\">";
echo "<s";
echo "pan style=\"padding-left:5px;\">";
echo "<s";
echo "trong>Action</strong></span></td>\r\n</tr>\r\n";
if ($num_rows != "0") {
$i = 0;
while ($fetch_msg = mysql_fetch_array($inbox_messages)) {
++$i;
if (!($user_name = mysql_fetch_array(mysql_query("select * from user_details where user_id='{$fetch_msg['from_user_id']}'")))) {
exit(mysql_error());
}
$date_time = explode(" ", $fetch_msg['sent_on']);
$date = $date_time[0];
$time = $date_time[1];
if ($date == date("Y-m-d")) {
$sent_on = $time;
} else {
$sent_on = $date;
}
echo "<tr>\r\n<td height=\"29\" align=\"center\" style=\"padding-left:5px;\">";
echo $i;
echo "</td>\r\n<td height=\"29\" style=\"padding-left:5px;\">";
echo "<s";
echo "pan class=\"alink\"><a href=\"inbox_details.php?msgid=";
echo $fetch_msg[id];
echo "\">";
echo $user_name['user_name'];
echo "</a></span></td>\r\n<td width=\"14%\" height=\"29\" align=\"center\" style=\"padding-left:5px;\">";
echo $sent_on;
echo "</td>\r\n<td height=\"29\" colspan=\"2\" align=\"left\" style=\"padding-left:5px;\">";
if ($fetch_msg['subject'] != "") {
echo $fetch_msg['subject'];
echo "....<a href=\"inbox_details.php?msgid=";
echo $fetch_msg[id];
echo "\">More</a>";
}
echo "</td>\r\n<td width=\"6%\" height=\"29\" align=\"center\" style=\"padding-left:5px;\"><a href=\"inbox_details.php?msgid=";
echo $fetch_msg[id];
echo "\"><img src=\"images/view.gif\" width=\"16\" height=\"16\" border=\"0\" title=\"Show\" /></a></td>\r\n<td width=\"6%\" align=\"center\" style=\"padding-left:5px;\"><a href=\"delete_inbox.php?msgid=";
echo $fetch_msg[id];
echo "\" onclick=\"javascript: return confirm('All the information related to this Member will be deleted.\\n\\nDo you really want to delete the Member?');\"><img src=\"images/del.gif\" width=\"16\" height=\"16\" border=\"0\" title=\"Delete\" /></a></td>\r\n</tr>\r\n";
}
}
echo "<tr>\r\n <td height=\"29\" colspan=\"9\" align=\"center\" valign=\"middle\">";
echo $no_mem_inbox;
echo "</td>\r\n</tr>\r\n";
echo "<tr>\r\n<td colspan=\"9\" align=\"center\" valign=\"middle\" style=\"padding-top:10px\">\r\n";
if ($pagelimits < $str_num) {
if (1 < $page_num) {
$prev_page = $cur_page - 1;
echo "<span class='alink'><a href='{$_SERVER['PHP_SELF']}?cur_page={$prev_page}'>Prev</a></span>";
echo " ;; ;;";
}
$j = 1;
$i = 0;
while ($i < $total_num_page) {
echo "<span class='alink'><a href='{$_SERVER['PHP_SELF']}?cur_page={$i}'>{$j}</a></span>";
++$j;
echo " ;; ;;";
++$i;
}
if ($page_num < $total_num_page) {
$next_page = $cur_page + 1;
$last_page = $total_num_page - 1;
echo "<span class='alink'>\r\n<a href='{$_SERVER['PHP_SELF']}?cur_page={$next_page}&&page_record=next&&total_records={$num}'>Next</a></span>";
echo " ;; ;;";
}
}
echo "\t\r\n</td>\r\n</tr>\r\n<tr>\r\n<td height=\"29\" colspan=\"9\" align=\"center\" valign=\"middle\" class=\"innertxt\"> ;;</td>\r\n</tr>\r\n</form>\r\n</table>\r\n\r\n";
}

session_start();
include_once("template1.php");
echo "\r\n";
?>

_________________
Go BIG or go HOME !
View user's profile Send private message
Please help me decode(
www.waraxe.us Forum Index -> Php
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.107 Seconds