您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)有哪些PHP的安全設(shè)置,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
PHP的安全設(shè)置有:1、屏蔽PHP錯誤輸出;2、屏蔽PHP版本;3、關(guān)閉全局變量;4、文件系統(tǒng)限制;5、禁止遠(yuǎn)程資源訪問;6、安裝擴(kuò)展等等。
最近和同事說起了PHP安全相關(guān)的問題,記錄下一些心得體會。
由于腳本語言和早期版本設(shè)計的諸多原因,php項(xiàng)目存在不少安全隱患。從配置選項(xiàng)來看,可以做如下的優(yōu)化。
1.屏蔽PHP錯誤輸出。
在/etc/php.ini(默認(rèn)配置文件位置),將如下配置值改為Off
display_errors=Off
不要將錯誤堆棧信息直接輸出到網(wǎng)頁上,防止黑客加以利用相關(guān)信息。
正確的做法是:
把錯誤日志寫到日志文件中,方便排查問題。
2.屏蔽PHP版本。
默認(rèn)情況下PHP版本會被顯示在返回頭里,如:Response Headers X-powered-by: PHP/7.2.0
將php.ini中如下的配置值改為Off
expose_php=Off
3.關(guān)閉全局變量。
如果開啟全局變量會使一些表單提交的數(shù)據(jù)被自動注冊為全局變量。代碼如下:
<form action="/login" method="post"> <input name="username" type="text"> <input name="password" type="password"> <input type="submit" value="submit" name="submit"> </form>
如果開啟了全局變量,則服務(wù)器端PHP腳本可以用$username和$password來獲取到用戶名和密碼,這會造成極大的腳本注入危險。
開啟方法是在php.ini中修改如下:
register_globals=On
建議關(guān)閉,參數(shù)如下:
register_globals=Off
當(dāng)關(guān)閉后,就只能從$_POST、$_GET、$_REQUEST里面獲取相關(guān)參數(shù)。
4.文件系統(tǒng)限制
可以通過open_basedir來限制PHP可以訪問的系統(tǒng)目錄。
如果不限制使用下面的腳本代碼(hack.php)可以獲取到系統(tǒng)密碼。
<?php echo file_get_contents('/etc/passwd');
當(dāng)設(shè)置了后則會報錯,不再顯示相關(guān)信息,讓系統(tǒng)目錄b不會被非法訪問:
PHP Warning: file_get_contents(): open_basedir restriction in effect. File(/etc/passwd) is not within the allowed path(s): (/var/www) in /var/www/hack.php on line 3
Warning: file_get_contents(): open_basedir restriction in effect. File(/etc/passwd) is not within the allowed path(s): (/var/www) in /var/www/hack.php on line 3 PHP Warning: file_get_contents(/etc/passwd): failed to open stream: Operation not permitted in /var/www/hack.php on line 3
Warning: file_get_contents(/etc/passwd): failed to open stream: Operation not permitted in /var/www/hack.php on line 3
設(shè)置方法如下:
open_basedir=/var/www
5.禁止遠(yuǎn)程資源訪問。
allow_url_fopen=Off allow_url_include=Off
其他第三方安全擴(kuò)展6.Suhosin。
Suhosin是一個PHP程序的保護(hù)系統(tǒng)。它的設(shè)計初衷是為了保護(hù)服務(wù)器和用戶,抵御PHP程序和PHP核心中已知或者未知的缺陷(感覺挺實(shí)用的,可以抵御一些小攻擊)。Suhosin有兩個獨(dú)立的部分,使用時可以分開使用或者聯(lián)合使用。
第一部分是一個用于PHP核心的補(bǔ)丁,它能抵御緩沖區(qū)溢出或者格式化串的弱點(diǎn)(這個必須的!);
第二部分是一個強(qiáng)大的 PHP擴(kuò)展(擴(kuò)展模式挺好的,安裝方便…),包含其他所有的保護(hù)措施。
wget http://download.suhosin.org/suhosin-0.9.37.1.tar.gztar zxvf suhosin-0.9.37.1.tar.gz cd suhosin-0.9.37.1/phpize./configure --with-php-config=/usr/local/bin/php-config make make install 在php.ini下加入suhosin.so即可 extension=suhosin.so
特性
運(yùn)行時保護(hù)
Session 保護(hù)
SESSION里的數(shù)據(jù)通常在服務(wù)器上的明文存放的。這里通過在服務(wù)端來加解密$_SESSION
。這樣將Session的句柄存放在Memcache或數(shù)據(jù)庫時,就不會被輕易攻破,很多時候我們的session數(shù)據(jù)會存放一些敏感字段。
這個特性在缺省情況下是啟用的,也可以通過php.ini來修改:
suhosin.session.encrypt = On suhosin.session.cryptkey = zuHywawAthLavJohyRilvyecyondOdjo suhosin.session.cryptua = On suhosin.session.cryptdocroot = On ;; IPv4 only suhosin.session.cryptraddr = 0suhosin.session.checkraddr = 0
Cookie加密
Cookie在客戶端瀏覽器的傳輸?shù)腍TTP頭也是明文的。通過加密cookie,您可以保護(hù)您的應(yīng)用程序?qū)Ρ姸嗟墓?,?/p>
Cookie加密在php.ini中的配置:
suhosin.cookie.encrypt = On ;; the cryptkey should be generated, e.g. with 'apg -m 32'suhosin.cookie.cryptkey = oykBicmyitApmireipsacsumhylWaps1 suhosin.cookie.cryptua = On suhosin.cookie.cryptdocroot = On ;; whitelist/blacklist (use only one) ;suhosin.cookie.cryptlist = WALLET,IDEAS suhosin.cookie.plainlist = LANGUAGE ;; IPv4 only suhosin.cookie.cryptraddr = 0suhosin.cookie.checkraddr = 0Blocking Functions 測試##默認(rèn)PHP的Session保存在tmp路徑下ll -rt /tmp | grep sess##擴(kuò)展未開啟時查看某條sesson的數(shù)據(jù)cat sess_ururh83qvkkhv0n51lg17r4aj6//記錄是明文的##擴(kuò)展開啟后查看某條sesson 的數(shù)據(jù)cat sess_ukkiiiheedupem8k4hheo0b0v4//記錄是密文的可見加密對安全的重要性
阻斷功能
白名單
##顯式指定指定白名單列表 suhosin.executor.func.whitelist = htmlentities,htmlspecialchars,base64_encode suhosin.executor.eval.whitelist = htmlentities,htmlspecialchars,base64_encode <?php echo htmlentities('<test>'); eval('echo htmlentities("<test>");');
黑名單
##顯式指定指定黑名單列表 suhosin.executor.func.blacklist = assert,unserialize,exec,popen,proc_open,passthru,shell_exec,system,hail,parse_str,mt_srand suhosin.executor.eval.whitelist = assert,unserialize,exec,popen,proc_open,passthru,shell_exec,system,hail,parse_str,mt_srand 通過日志來查看非法調(diào)用黑白名單 suhosin.simulation = 1 suhosin.log.file = 511 suhosin.log.file.name = /tmp/suhosin-alert.log
其他配置項(xiàng)
suhosin.executor.include.max_traversal 擴(kuò)目錄的最大深度,可以屏蔽切換到非法路徑 suhosin.executor.include.whitelist 允許包含的URL,用逗號分隔 suhosin.executor.include.blacklist 禁止包含的URL,用逗號分隔 suhosin.executor.disable_eval = On 禁用eval函數(shù) suhosin.upload.max_uploads suhosin.upload.disallow_elf suhosin.upload.disallow_binary suhosin.upload.remove_binary suhosin.upload.verification_script 上傳文件檢查腳本,可以來檢測上傳的內(nèi)容是否包含webshell特征
使用Suhosin,你可以得到一些錯誤日志,你能把這些日志放到系統(tǒng)日志中,也可以同時寫到其他任意的日志文件中去;
它還可以為每一個虛擬主機(jī)創(chuàng)建黑名單和白名單;
可以過濾GET和POST請求、文件上載和cookie;
你還能傳送加密的會話和cookie,可以設(shè)置不能傳送的存儲上線等等;
它不像原始的PHP強(qiáng)化補(bǔ)丁,Suhosin是可以被像Zend Optimizer這樣的第三方擴(kuò)展軟件所兼容的。
以上就是有哪些PHP的安全設(shè)置,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。