為index.php文件設置只讀屬性後,木馬就沒權限給你文件末尾追加廣告了。
下面我們看具體的代碼,設置index.php只讀:
復制代碼 代碼如下:
<?php
function set_writeable($file_name)
{
if(@chmod($file_name,0555))
{
echo "修改index.php文件只讀屬性成功";
}
else
{
echo "修改index.php文件只讀屬性失敗,空間商不支持此操作!";
}
}
set_writeable("index.php");
?>
把以上內容保存成setread.php,然後上傳到空間,直接浏覽器浏覽該地址即可設置只讀。
不過設置這個只讀屬性以後,你自己通過ftp也沒有權限刪除index.php,如果需要刪除或者覆蓋index.php請使用以下代碼設置index.php的讀寫權限。
下面是設置index.php讀寫的代碼:
復制代碼 代碼如下:
<?php
function set_writeable($file_name)
{
if(@chmod($file_name,0777))
{
echo "修改index.php文件讀寫屬性成功";
}
else
{
echo "修改index.php文件讀寫屬性失敗,空間商不支持此操作!";
}
}
set_writeable("index.php");
?>
保存以上內容為:setwrite.php,通過浏覽器訪問即可設置讀寫權限了。