浏览模式: 标准 | 列表

nginx虚拟主机防webshell 完美版

作者:memory 发布时间:2010-04-26, 22:42:33 分类:服务器相关 阅读:1582

我们先来看下nginx.confserver
{
listen 80;
server_name www.a.com;
index index.html index.htm index.php;
root /data/htdocs/www.a.com/;#limit_conn crawler 20;location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}}server
{
listen 80;
server_name www.b.com;
index index.html index.htm index.php;
root /data/htdocs

Linux服务器如何查找WebShell后门  

作者:memory 发布时间:2011-09-14, 18:54:39 分类:服务器相关 阅读:826

有过服务器被挂马或者被黑的朋友应该知道,黑客入侵web服务器的第一目标是往服务器上上传一个webshell,有了webshell黑客就可以干更多的事情,网站被挂马后很多人会束手无策,无从查起,其实并不复杂,这里我将以php环境为例讲几个小技巧,希望对大家有帮助。<br/>
第1页共1页1