三千论坛
标题: PHP木马的攻击的防御之道 [打印本页]
作者: 异仟年 时间: 2022-9-5 18:08
标题: PHP木马的攻击的防御之道
首先修改httpd.conf,如果你只允许你的php脚本程序在web目录里操作,还可以修改httpd.conf文件限制php的操作路径。比如你的web目录是/usr/local/apache/htdocs,那么在httpd.conf里加上这么几行:
" w/ ~% M4 p- f" s- J7 U% Q php_admin_value open_basedir /usr/local/apache/htdocs8 w b' i$ P1 {- U; k- p% b
6 v$ U' @+ g% ^+ `
这样,如果脚本要读取/usr/local/apache/htdocs以外的文件将不会被允许,如果错误显示打开的话会提示这样的错误:
' V1 c- t/ t5 M& d3 G6 y) v4 i Warning: open_basedir restriction in effect. File is in wrong directory in. n1 x3 f, u$ R, f
/usr/local/apache/htdocs/open.php on line 4
5 g {1 r' j% M( a' u, s3 ~! A! N# p 等等。" E0 e5 t3 H( n6 b7 b) g
2.防止php木马执行webshell
' g' K% c0 d9 u% e2 w) D 打开safe_mode,# s% \8 b/ K0 `9 Y+ K% V4 ^1 F4 h
在,php.ini中设置6 y+ r0 g! n* K3 t* t
disable_functions= passthru,exec,shell_exec,system 9 w+ `# G9 Y3 }& C" V
二者选一即可,也可都选
9 g% B4 L0 s8 S# Q" z+ c. L 3.防止php木马读写文件目录
* w3 a$ U& c# } {/ l 在php.ini中的 h9 m9 E8 S Q! u; u7 a
disable_functions= passthru,exec,shell_exec,system
$ [: a; z4 X5 f( [ J7 x 后面加上php处理文件的函数
' Z7 I: t" G3 w5 [8 [$ d 主要有8 r( P+ m% v1 j5 x0 p
fopen,mkdir,rmdir,chmod,unlink,dir) ~; V! z/ k" j! ~1 M6 T
fopen,fread,fclose,fwrite,file_exists- V6 p7 c4 ^5 u$ R
closedir,is_dir,readdir.opendir
: a5 ~% u: H8 O& l, M fileperms.copy,unlink,delfile3 E! L; e- e. @3 g
即成为
9 S, I$ V; A3 J" b; U disable_functions= passthru,exec,shell_exec,system,fopen,mkdir,rmdir,chmod,unlink,dir4 V5 {* ^5 O% x1 U) d/ K
,fopen,fread,fclose,fwrite,file_exists
, U9 }% M: M3 `3 C ,closedir,is_dir,readdir.opendir
& F5 D$ |7 Y9 u1 ~ ,fileperms.copy,unlink,delfile( {" i. @+ R" h: e$ r
ok,大功告成,php木马拿我们没辙了,^_^
0 T/ }0 d3 P* ~) a 遗憾的是这样的话,利用文本数据库的那些东西就都不能用了。 v0 t5 ^( n7 {# C% u5 D2 |
如果是在windos平台下搭建的apache我们还需要注意一点,apache默认运行是system权限,这很恐怖,这让人感觉很不爽.那我们就给apache降降权限吧. 4 k7 u* ]5 l% { u# ]
net user apache ****microsoft /add # }7 j6 K6 j4 c; f) |$ T" e
net localgroup users apache /del
3 F, h; ^! }) ^/ H% a ok.我们建立了一个不属于任何组的用户apche.
7 z7 y& `: \7 Y) X 我们打开计算机管理器,选服务,点apache服务的属性,我们选择log on ,选择this account ,我们填入上面所建立的账户和密码,重启apache服务,ok,apache运行在低权限下了.
5 [( p/ ^# `; A. k& b& b 实际上我们还可以通过设置各个文件夹的权限,来让apache用户只能执行我们想让它能干的事情,给每一个目录建立一个单独能读写的用户.这也是当前很多虚拟主机提供商的流行配置方法哦,不过这种方法用于防止这里就显的有点大材小用了。
2 M2 U8 b& Z, b9 d: g
欢迎光临 三千论坛 (http://bbs.3000y.com.cn/) |
Powered by Discuz! X3.4 |