TA的每日心情 | 奋斗 2019-10-18 11:20 |
---|
签到天数: 678 天 [LV.9]以坛为家II
|
Nginx有一个缺陷,就是没有像apache的php_value_basedir给我们限制php文件访问目录,唉,没办法,我们只有在php上面下手,但是,PHP低版本下,fastcgi 模式下open_base设置无效,PHP在PHP5.3.3以上已经增加了HOST配置,可以起到防跨站、跨目录的问题。
Nginx+PHP防跨站,跨目录的安全设置,多种方式,适合php5.3以上
那Nginx怎么防止跨目录、跨站设置方法呢?没办法,只得修改PHP的代码咯。。
1、解压php源代码不细说了。
2、执行编译./configure — (自带参数)
3、修改源代码。此文件位于main/fopen_wrappers.c- /* {{{ php_check_open_basedir
- */
- PHPAPI int php_check_open_basedir_ex(const char *path, int warn TSRMLS_DC)
- {
- /* Only check when open_basedir is available */
- if (PG(open_basedir) && *PG(open_basedir)) {
- char *pathbuf;
- char *ptr;
- char *end;
- /*添加开始, add by http://www.cnblackhat.com */
- char *env_doc_root;
- env_doc_root = sapi_getenv(“DOCUMENT_ROOT”, sizeof(“DOCUMENT_ROOT”)-1 TSRMLS_CC);
- if(env_doc_root){
- int res_root = php_check_specific_open_basedir(env_doc_root, path TSRMLS_CC);
- efree(env_doc_root);
- if (res_root == 0) {
- return 0;
- }
- }
- // 添加的内容结束
- pathbuf = estrdup(PG(open_basedir));
- ptr = pathbuf;
- while (ptr && *ptr) {
- end = strchr(ptr, DEFAULT_DIR_SEPARATOR);
- if (end != NULL) {
- *end = ‘\0′;
- end++;
- }
- if (php_check_specific_open_basedir(ptr, path TSRMLS_CC) == 0) {
- efree(pathbuf);
- return 0;
- }
- ptr = end;
- }
- if (warn) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, “open_basedir restriction in effect. File(%s) is not within the allowed path(s): (%s)”, path, PG(open_basedir));
- }
- efree(pathbuf);
- errno = EPERM; /* we deny permission to open it */
- return -1;
- }
- /* Nothing to check… */
- return 0;
- }
- /* }}} */
复制代码 然后执行
make ZEND_EXTRA_LIBS=’-liconv’ make install
cp php.ini-dist /usr/local/php/etc/php.ini
最后修改php.ini中的open_basedir改为:open_basedir = “/var/tmp/:/tmp/”
OK啦。就这样了。这样,Nginx就防止跨目录、跨站,哈哈,准确的说是,利用了,PHP的特性。
|
|