博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
限定某个目录禁止解析(apache)
阅读量:6256 次
发布时间:2019-06-22

本文共 1654 字,大约阅读时间需要 5 分钟。

限定某个目录禁止解析

一个公共的可以上传图片的目录下,应该给该目录做php禁止解析,这样就会防止其它人上传php的***。

[root@chy ~]# vi /usr/local/apache2.4/conf/extra/httpd-vhosts.conf 
php_admin_flag engine off
Order allow,deny Deny from all
主要配置如上,配置详解
(给111.com下面的upload目录做禁止php解析 php_admin_flag engine off(禁止php解析)
(通配所有的php) Order allow,deny Deny from all(拒绝所有的php)
(这里做filesmatch (deny)是因为不deny php会访问源代码) [root@chy ~]# /usr/local/apache2.4/bin/apachectl -tSyntax OK[root@chy ~]# /usr/local/apache2.4/bin/apachectl graceful(查看下配置是否有问题,然后加载配置)

测试php解析

[root@chy 111.com]# mkdir /data/wwwroot/111.com/upload(创建一个php目录)[root@chy 111.com]# ls123.php  admin  index.php  lf.png  upload[root@chy 111.com]# cp 123.php upload/(将123.phpcp到upload目录下)[root@chy 111.com]# curl -x192.168.212.10:80 'http://www.111.com/upload/123.php' -IHTTP/1.1 403 ForbiddenDate: Thu, 03 Aug 2017 21:57:03 GMTServer: Apache/2.4.27 (Unix) PHP/5.6.30Content-Type: text/html; charset=iso-8859-1[root@chy 111.com]# curl -x192.168.212.10:80 'http://www.111.com/upload/123.php' 403 Forbidden

Forbidden

You don't have permission to access /upload/123.phpon this server.

(如上这两的测试是
(通配所有的php) Order allow,deny Deny from all(拒绝所有的php)
(这里做filesmatch (deny)是因为不deny php会访问源代码)在不让解析php的同时也不让访问源代码的操作)[root@chy 111.com]# curl -x192.168.212.10:80 'http://www.111.com/upload/123.php'
(经过测试当不加
(通配所有的php) Order allow,deny Deny from all(拒绝所有的php)
这步操作是会下在php的源代码这样来说是非常危险的)

转载于:https://blog.51cto.com/chy940405/2047956

你可能感兴趣的文章
linux系统时间同步,硬件时钟和系统时间同步,时区的设置
查看>>
CentOS下载包格式说明
查看>>
VMware Vsphere 6.0安装配置 二安装vcenter server程序
查看>>
关于CISCO asa5510防火墙端口映射配置
查看>>
2012年6月美国最佳虚拟主机提供商TOP12性能评测
查看>>
monkey详细介绍之二
查看>>
两列布局之左边固定宽度,右边自适应(绝对定位实现方法)
查看>>
4,gps信号与地图匹配算法
查看>>
python print的用法
查看>>
之字形打印矩阵
查看>>
我的世界之电脑mod小乌龟 —— 方位上的操作 lua函数集
查看>>
游戏方案
查看>>
在 Linux 下搭建 Git 服务器
查看>>
StackExchange.Redis Client(转载)
查看>>
Leetcode题目:Bulls and Cows
查看>>
bk. 2014.12.1
查看>>
CEOI2014 wall Spoiler
查看>>
UVA10391 ZOJ1825 Compound Words【SET+暴力】
查看>>
动态规划------Combination Sum IV
查看>>
[BZOJ2463][中山市选2009]谁能赢呢?
查看>>