php eval(gzinflate(base64_decode
1个回答
展开全部
把eval换为echo,运行一下就能现实解密后的内容。你压缩包里面的1.txt文件解密后的内容如下:
<?php
require "../include/function.php";
chkuser();
if(isset($_GET['Page']))
{
$page=$_GET['Page'];
}
else
{
$page="1";
}
if(isset($_GET['kind']))
{
$kind=$_GET['kind'];
}
else
{
$kind="task";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML
xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>任务管理-<?php echo $site_tit; ?></TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<META content=<?php echo $site_des; ?> name=description>
<META content=<?php echo $site_key; ?> name=keywords>
<?php
require_once "../head1.php";
?>
<script>
function copylink(o)
{
var link1=document.getElementById("link"+o);
clipboardData.setData('Text',link1.value);
alert("宝贝地址已经复制到剪贴板中,\n请打开一个新的浏览窗口,\n把地址粘贴到浏览器的地址栏中您就可以访问此宝贝了!");
window.open();
}
</script>
<META content="MSHTML 6.00.2900.3429" name=GENERATOR></HEAD>
<BODY class=FullWidth>
<DIV class=main>
<DIV class=sell_new>
<DIV class=sell_left>
<div style="width:100%;background:#fff;text-align:center">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="15"> </td>
<td height="15"> </td>
</tr>
<tr>
<td> </td>
<td><div id="nltit">您的位置: <a href="/index.html">首页</a> >> 任务管理 >>
<?php
if($kind=="task"){echo "我发布的任务";}
else {echo "我接手的任务";}
?>
</div>
<div style="margin-top:10px;width:650px">
<table width="95%" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" colspan="8" style="border-bottom:1px dotted #ccc">任务分类:
<a href="task_list.php"><font color="#000000">我发布的任务</font></a> |
<a href="task_list.php?kind=witkey"><font color="#000000">我接手的任务</font></a>
</td>
</tr>
<tr align="center">
<td height="25">任务编号</td>
<td bgcolor="#efefef">发布用户</td>
<td height="25">宝贝地址</td>
<td height="25" bgcolor="#efefef">到期时间</td>
<td height="25">接手用户</td>
<td height="25" bgcolor="#efefef">任务来自</td>
<td>任务保证金</td>
<td bgcolor="#efefef">任务状态</td>
</tr>
<?php
$pagenum=15;
if($kind=="task"){
$sql="select top ".$pagenum." * from task_list where id not in(select Top ".strval($pagenum*($page-1))." id from task_list where taskuser='".$_SESSION['szuser']."') and taskuser='".$_SESSION['szuser']."'";
$rs=mssql_query($sql);
$all=execonn("select count(id) from task_list where taskuser='".$_SESSION['szuser']."'");
$pageacount= ceil($all/$pagenum);
}
if($kind=="witkey"){
$sql="select top ".$pagenum." * from task_list where id not in(select Top ".strval($pagenum*($page-1))." id from task_list where taskeruser='".$_SESSION['szuser']."') and taskeruser='".$_SESSION['szuser']."'";
$rs=mssql_query($sql);
$all=execonn("select count(id) from task_list where taskeruser='".$_SESSION['szuser']."'");
$pageacount= ceil($all/$pagenum);
}
while($row=mssql_fetch_array($rs))
{
?>
<tr align="center">
<td height="25"><a href="viewtask.php?tid=<?php echo $row['id']; ?>" target="_blank" title="点击查看任务详情"><?php echo $row['taskno']; ?></a></td>
<td bgcolor="#efefef"><a href="viewuser.php?uid=<?php echo $row['taskuser']; ?>" target="_blank" title="点击查看用户资料"><?php echo $row['taskuser']; ?></a></td>
<td height="25"><a href="#" onclick="copylink('<?php echo $row['id']; ?>');"><font color="#FF0000">点击这里</font></a>
<input name="link<?php echo $row['id']; ?>" type="hidden" value="<?php echo $row['shopurl']; ?>">
</td>
<td height="25" bgcolor="#efefef"><?php echo $row['enddate']; ?></td>
<td height="25"><a href="viewuser.php?uid=<?php echo $row['taskeruser']; ?>" target="_blank" title="点击查看用户资料"><?php echo $row['taskeruser']; ?></a></td>
<td height="25" bgcolor="#efefef"><?php echo $row['taskfrom']; ?></td>
<td><?php echo $row['taskmoney']; ?>元</td>
<td bgcolor="#efefef"><a href="viewtask.php?tid=<?php echo $row['id']; ?>" target="_blank" title="点击查看任务详情">
<?php if($kind=="task"){ ?>
<?php echo getstat2($row['taskstat'],0); ?>
<?php }
else { ?>
<?php echo getstat2($row['taskstat'],1); ?>
<?php } ?>
</a></td>
</tr>
<?php } ?>
<tr align="center">
<td height="25" colspan="8">
<?php
$outstr="";
$outstr.="共".$pageacount."页 ";
$p1=intval($page);
$p2=intval($pageacount);
if($page=="1")
{
$outstr=$outstr."首页 上一页";
}
else
{
$outstr=$outstr."<a href=task_list.php?kind=".$kind."&Page=1>首页</a> <a href=task_list.php?kind=".$kind."&Page=".strval($p1-1).">上一页</a>";
}
for($i=1;$i<=$p2;$i++)
{
$outstr=$outstr." <a href=task_list.php?kind=".$kind."&Page=".$i.">".$i."</a> ";
}
if(strval($page)==strval($pageacount))
{
$outstr=$outstr."下一页 末页";
}
else {
$outstr=$outstr."<a href=task_list.php?kind=".$kind."&Page=".strval($p1+1).">下一页</a> <a href=task_list.php?kind=".$kind."&Page=".strval($p2).">末页</a>";
}
echo $outstr;
?>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table><br><br>
</div>
<I class="sell_left_angle sell_left_tl"></I><I
class="sell_left_angle sell_left_tr"></I><I
class="sell_left_angle sell_left_bl"></I><I
class="sell_left_angle sell_left_br"></I> </DIV>
<?php
require_once "right.php";
require_once "../foot.php";
mssql_close();
?>
</BODY></HTML>
<?php
require "../include/function.php";
chkuser();
if(isset($_GET['Page']))
{
$page=$_GET['Page'];
}
else
{
$page="1";
}
if(isset($_GET['kind']))
{
$kind=$_GET['kind'];
}
else
{
$kind="task";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML
xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>任务管理-<?php echo $site_tit; ?></TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<META content=<?php echo $site_des; ?> name=description>
<META content=<?php echo $site_key; ?> name=keywords>
<?php
require_once "../head1.php";
?>
<script>
function copylink(o)
{
var link1=document.getElementById("link"+o);
clipboardData.setData('Text',link1.value);
alert("宝贝地址已经复制到剪贴板中,\n请打开一个新的浏览窗口,\n把地址粘贴到浏览器的地址栏中您就可以访问此宝贝了!");
window.open();
}
</script>
<META content="MSHTML 6.00.2900.3429" name=GENERATOR></HEAD>
<BODY class=FullWidth>
<DIV class=main>
<DIV class=sell_new>
<DIV class=sell_left>
<div style="width:100%;background:#fff;text-align:center">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="15"> </td>
<td height="15"> </td>
</tr>
<tr>
<td> </td>
<td><div id="nltit">您的位置: <a href="/index.html">首页</a> >> 任务管理 >>
<?php
if($kind=="task"){echo "我发布的任务";}
else {echo "我接手的任务";}
?>
</div>
<div style="margin-top:10px;width:650px">
<table width="95%" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<td height="25" colspan="8" style="border-bottom:1px dotted #ccc">任务分类:
<a href="task_list.php"><font color="#000000">我发布的任务</font></a> |
<a href="task_list.php?kind=witkey"><font color="#000000">我接手的任务</font></a>
</td>
</tr>
<tr align="center">
<td height="25">任务编号</td>
<td bgcolor="#efefef">发布用户</td>
<td height="25">宝贝地址</td>
<td height="25" bgcolor="#efefef">到期时间</td>
<td height="25">接手用户</td>
<td height="25" bgcolor="#efefef">任务来自</td>
<td>任务保证金</td>
<td bgcolor="#efefef">任务状态</td>
</tr>
<?php
$pagenum=15;
if($kind=="task"){
$sql="select top ".$pagenum." * from task_list where id not in(select Top ".strval($pagenum*($page-1))." id from task_list where taskuser='".$_SESSION['szuser']."') and taskuser='".$_SESSION['szuser']."'";
$rs=mssql_query($sql);
$all=execonn("select count(id) from task_list where taskuser='".$_SESSION['szuser']."'");
$pageacount= ceil($all/$pagenum);
}
if($kind=="witkey"){
$sql="select top ".$pagenum." * from task_list where id not in(select Top ".strval($pagenum*($page-1))." id from task_list where taskeruser='".$_SESSION['szuser']."') and taskeruser='".$_SESSION['szuser']."'";
$rs=mssql_query($sql);
$all=execonn("select count(id) from task_list where taskeruser='".$_SESSION['szuser']."'");
$pageacount= ceil($all/$pagenum);
}
while($row=mssql_fetch_array($rs))
{
?>
<tr align="center">
<td height="25"><a href="viewtask.php?tid=<?php echo $row['id']; ?>" target="_blank" title="点击查看任务详情"><?php echo $row['taskno']; ?></a></td>
<td bgcolor="#efefef"><a href="viewuser.php?uid=<?php echo $row['taskuser']; ?>" target="_blank" title="点击查看用户资料"><?php echo $row['taskuser']; ?></a></td>
<td height="25"><a href="#" onclick="copylink('<?php echo $row['id']; ?>');"><font color="#FF0000">点击这里</font></a>
<input name="link<?php echo $row['id']; ?>" type="hidden" value="<?php echo $row['shopurl']; ?>">
</td>
<td height="25" bgcolor="#efefef"><?php echo $row['enddate']; ?></td>
<td height="25"><a href="viewuser.php?uid=<?php echo $row['taskeruser']; ?>" target="_blank" title="点击查看用户资料"><?php echo $row['taskeruser']; ?></a></td>
<td height="25" bgcolor="#efefef"><?php echo $row['taskfrom']; ?></td>
<td><?php echo $row['taskmoney']; ?>元</td>
<td bgcolor="#efefef"><a href="viewtask.php?tid=<?php echo $row['id']; ?>" target="_blank" title="点击查看任务详情">
<?php if($kind=="task"){ ?>
<?php echo getstat2($row['taskstat'],0); ?>
<?php }
else { ?>
<?php echo getstat2($row['taskstat'],1); ?>
<?php } ?>
</a></td>
</tr>
<?php } ?>
<tr align="center">
<td height="25" colspan="8">
<?php
$outstr="";
$outstr.="共".$pageacount."页 ";
$p1=intval($page);
$p2=intval($pageacount);
if($page=="1")
{
$outstr=$outstr."首页 上一页";
}
else
{
$outstr=$outstr."<a href=task_list.php?kind=".$kind."&Page=1>首页</a> <a href=task_list.php?kind=".$kind."&Page=".strval($p1-1).">上一页</a>";
}
for($i=1;$i<=$p2;$i++)
{
$outstr=$outstr." <a href=task_list.php?kind=".$kind."&Page=".$i.">".$i."</a> ";
}
if(strval($page)==strval($pageacount))
{
$outstr=$outstr."下一页 末页";
}
else {
$outstr=$outstr."<a href=task_list.php?kind=".$kind."&Page=".strval($p1+1).">下一页</a> <a href=task_list.php?kind=".$kind."&Page=".strval($p2).">末页</a>";
}
echo $outstr;
?>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table><br><br>
</div>
<I class="sell_left_angle sell_left_tl"></I><I
class="sell_left_angle sell_left_tr"></I><I
class="sell_left_angle sell_left_bl"></I><I
class="sell_left_angle sell_left_br"></I> </DIV>
<?php
require_once "right.php";
require_once "../foot.php";
mssql_close();
?>
</BODY></HTML>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询