Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
May 2, 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: 9145

People Online:
Visitors: 700
Members: 0
Total: 700
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PHP script decode requests -> Please help decode(((
Post new topic  Reply to topic View previous topic :: View next topic 
Please help decode(((
PostPosted: Tue Sep 18, 2012 1:01 pm Reply with quote
sarik1986
Regular user
Regular user
 
Joined: Jul 02, 2012
Posts: 10




Please brothers help to decode(
http://pastebin.com/4xJJAmCU
View user's profile Send private message
PostPosted: Tue Sep 18, 2012 2:26 pm Reply with quote
demon
Moderator
Moderator
 
Joined: Sep 22, 2010
Posts: 485




here you are and see your pm Wink

Code:
<?php
function main()
{
    $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'];
    $lim           = $rs0['num_page_numbers'];
    $start         = mysql_real_escape_string($_REQUEST['start']);
    $end           = mysql_real_escape_string($_REQUEST['end']);
    if (!$start) {
        $start = 1;
    }
    if (!$end) {
        $end = $lim;
    }
    $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 community_category order by community_name asc");
    $str_num        = mysql_num_rows($str);
    $query_data     = mysql_fetch_array($str);
    $total_num_page = ceil(mysql_num_rows($str) / $records_per_page);
    if ($total_num_page < $lim) {
        $lim = $total_num_page;
    }
    if ($total_num_page < $end) {
        $end = $total_num_page;
    }
    if (empty($cur_page)) {
        $cur_page = 0;
    }
    $limit_str   = "LIMIT " . $cur_page * $records_per_page . ",{$records_per_page}";
    $comm_detail = mysql_query("select * from community_category order by community_name asc {$limit_str}");
    $num_rows    = mysql_num_rows($comm_detail);
    echo "<div class=\"mainheading\">Communities &raquo; Categories</div><br />\r\n        \r\n<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\">\r\n  <tr>\r\n    <td width=\"100%\" align=\"left\" valign=\"top\"><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"inset\">\r\n\r\n      <tr>\r\n<tr>\r\n            <td colspan=\"6\" style=\"padding-left:10px;\"> ;;</td>\r\n          </tr>\r\n        <td><table width=\"100%\"";
    echo " border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"tblBorder\">\r\n          \r\n          <form method=\"post\" name=\"resumeform\" id=\"resumeform\">\r\n            <tr>\r\n\t\t\t\r\n\t\t\t";
    if ($num_rows != "0") {
        $i = 0;
        do {
            if ($fetch_comm = mysql_fetch_array($comm_detail)) {
                $comm_num = mysql_num_rows(mysql_query("select * from communities where community_cat='{$fetch_comm['community_cat_id']}'"));
                ++$i;
                echo "            <td width=\"5%\" align=\"right\" valign=\"middle\" class=\"mediumtxt\" style=\"padding:5px 5px 5px 5px;\" >\r\n\t\t\t  <img src=\"images/black-bullet.gif\" />\t\t\t  </td>\r\n\t\t\t  <td width=\"28%\" align=\"left\" valign=\"middle\" class=\"mediumtxt alink\" style=\"padding-left:5px;\" >\r\n\t\t\t  ";
                echo "<a href='community-" . $fetch_comm[community_cat_id] . "-" . urlconvert($fetch_comm[community_name]) . ".html' title='{$fetch_comm['community_name']}'><span style='text-transform:capitalize'>{$fetch_comm['community_name']}</span></a>";
                echo "</td>\r\n";
                if ($i == 3) {
                    echo "</tr><tr>";
                    $i = 0;
                }
            }
        } while (1);
    }
    echo "<tr><td colspan='6' align='center'>No Communities Added </td></tr>";
    echo "\t\t\t  \r\n              </tr>\r\n            \r\n            <tr>\r\n              <td height=\"29\" colspan=\"2\" align=\"center\" valign=\"middle\" class=\"innertxt\"> ;;</td>\r\n            </tr>\r\n            <tr>\r\n              <td height=\"29\" colspan=\"6\" align=\"center\" valign=\"middle\" class=\"innertxt\">\r\n\t\t\t  ";
    if ($pagelimits < $str_num) {
        if (1 < $page_num) {
            $st = $start - 1;
            $ed = $end - 1;
            if ($st == 0) {
                $st = 1;
                $ed = $st + ($lim - 1);
            }
            $prev_page = $cur_page - 1;
            echo "<span class='alink'><a href='{$_SERVER['PHP_SELF']}?cur_page={$prev_page}&&userid={$userid}&amp;start={$st}&amp;end={$ed}'>Prev</a></span>";
            echo " ;; ;;";
        }
        $i = $start;
        while ($i <= $end) {
            if ($i == $cur_page + 1) {
                echo $i . " ;; ;;";
            } else {
                $j = $i - 1;
                echo "<span class='alink'><a href='{$_SERVER['PHP_SELF']}?cur_page={$j}&amp;start={$start}&amp;end={$end}&&userid={$userid}'>{$i}</a></span>";
                echo " ;; ;;";
            }
            ++$i;
        }
        if ($page_num < $total_num_page) {
            $star = $start + 1;
            $end1 = $star + $lim - 1;
            if ($total_num_page < $end1) {
                $end1 = $total_num_page;
                $star = $total_num_page - ($lim - 1);
            }
            $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}&&userid={$userid}&&start={$star}&amp;end={$end1}'>Next</a></span>";
            echo " ;; ;;";
        }
    }
    echo "</td>\r\n            </tr>\r\n          </form>\r\n        </table></td>\r\n      </tr>\r\n\r\n    </table></td>\r\n  </tr>\r\n  <tr>\r\n    <td align=\"right\" valign=\"middle\"> ;;</td>\r\n  </tr>\r\n</table>\r\n";
}

session_start();
include("conn.php");
include_once("template2.php");
?>

_________________
Go BIG or go HOME !
View user's profile Send private message
Please help decode(((
  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 topic  Reply 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-2020 Janek Vind "waraxe"
Page Generation: 0.165 Seconds