黑帽联盟

标题: Nginx 防跨目录设置方法 [打印本页]

作者: yun    时间: 2017-1-23 14:22
标题: Nginx 防跨目录设置方法
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
  1. /* {{{ php_check_open_basedir
  2. */
  3. PHPAPI int php_check_open_basedir_ex(const char *path, int warn TSRMLS_DC)
  4. {
  5. /* Only check when open_basedir is available */
  6. if (PG(open_basedir) && *PG(open_basedir)) {
  7. char *pathbuf;
  8. char *ptr;
  9. char *end;
  10. /*添加开始,  add by http://www.cnblackhat.com */
  11. char *env_doc_root;
  12. env_doc_root = sapi_getenv(“DOCUMENT_ROOT”, sizeof(“DOCUMENT_ROOT”)-1 TSRMLS_CC);
  13. if(env_doc_root){
  14. int res_root = php_check_specific_open_basedir(env_doc_root, path TSRMLS_CC);
  15. efree(env_doc_root);
  16. if (res_root == 0) {
  17. return 0;
  18. }
  19. }
  20. // 添加的内容结束
  21. pathbuf = estrdup(PG(open_basedir));
  22. ptr = pathbuf;
  23. while (ptr && *ptr) {
  24. end = strchr(ptr, DEFAULT_DIR_SEPARATOR);
  25. if (end != NULL) {
  26. *end = ‘\0′;
  27. end++;
  28. }
  29. if (php_check_specific_open_basedir(ptr, path TSRMLS_CC) == 0) {
  30. efree(pathbuf);
  31. return 0;
  32. }
  33. ptr = end;
  34. }
  35. if (warn) {
  36. 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));
  37. }
  38. efree(pathbuf);
  39. errno = EPERM; /* we deny permission to open it */
  40. return -1;
  41. }
  42. /* Nothing to check… */
  43. return 0;
  44. }
  45. /* }}} */
复制代码
然后执行
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的特性。







欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/) Powered by Discuz! X2.5