PHP指令碼木馬的進階防範

來源:互聯網
上載者:User
進階|指令碼|木馬

【摘 要】 介紹PHP指令碼木馬的進階防範,防止php木馬執行webshell,防止php木馬讀寫檔案目錄文章專題
1、防止跳出web目錄


首先修改httpd.conf,如果你只允許你的php指令碼程式在web目錄裡操作,還可以修改httpd.conf檔案限制php的操作路徑。比如你的web目錄是/usr/local/apache/htdocs,那麼在httpd.conf裡加上這麼幾行:


php_admin_value open_basedir /usr/local/apache/htdocs


這樣,如果指令碼要讀取/usr/local/apache/htdocs以外的檔案將不會被允許,如果錯誤顯示開啟的話會提示這樣的錯誤:


Warning: open_basedir restriction in effect. File is in wrong directory in /usr/local/apache/htdocs/open.php on line 4 等等。


2、防止php木馬執行webshell


開啟safe_mode,


在,php.ini中設定


disable_functions= passthru,exec,shell_exec,system


二者選一即可,也可都選


3、防止php木馬讀寫檔案目錄


在php.ini中的


disable_functions= passthru,exec,shell_exec,system


後面加上php處理檔案的函數


主要有


fopen,mkdir,rmdir,chmod,unlink,dir


fopen,fread,fclose,fwrite,file_exists

closedir,is_dir,readdir.opendir


fileperms.copy,unlink,delfile


即成為


disable_functions= passthru,exec,shell_exec,system,fopen,mkdir,rmdir,chmod,unlink,dir


,fopen,fread,fclose,fwrite,file_exists


,closedir,is_dir,readdir.opendir


,fileperms.copy,unlink,delfile


ok,大功告成,php木馬拿我們沒轍了,遺憾的是這樣的話,利用文本資料庫的那些東西就都不能用了。


如果是在windos平台下搭建的apache我們還需要注意一點,apache預設運行是system許可權,這很恐怖,這讓人感覺很不爽.那我們就給apache降降許可權吧。


net user apache fuckmicrosoft /add


net localgroup users apache /del


ok.我們建立了一個不屬於任何組的使用者apche。


我們開啟電腦管理器,選服務,點apache服務的屬性,我們選擇log on,選擇this account,我們填入上面所建立的賬戶和密碼,重啟apache服務,ok,apache運行在低許可權下了。

實際上我們還可以通過設定各個檔案夾的許可權,來讓apache使用者只能執行我們想讓它能乾的事情,給每一個目錄建立一個單獨能讀寫的使用者。這也是當前很多虛擬機器主機供應商的流行配置方法哦,不過這種方法用於防止這裡就顯的有點大材小用了。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.