当前位置:首页 > nginx > nginx-漏洞修复 > 正文内容

nginx-目录遍历漏洞

1、描述

一般在配置Nginx访问静态资源时,需要指定文件在服务器上的路径,一般是在location下配置alias设置文件目录。如果alias路径后配置了/location路径后未配置/就会出现目录穿越的漏洞,访问者通过调整url的格式就可以查看到alias配置路径的目录的上层目录及文件情况,造成信息泄露。

2、解决方案

在配置alias目录路径时,location后面的目录路径也要加上/,如:location /files/


3、配置示例

未配置:

location配置的路径是/cc1

server {

  listen 8081;

  server_name localhost;

     location /cc1 {

        autoindex on;

        alias /test/;

        autoindex_exact_size off;

        autoindex_localtime on;

        charset utf-8;

        index index.html index.htm;

     }

 }

图片2.png


访问http://localhost:8081/cc1/

image.png


这时调整urlhttp://localhost:8081/cc1../

image.png



发现/test上层目录的情况,也就是根分区下的目录、文件情况也显示了出来,这时我们可以进入到根分区下任意的目录,服务器上的所有文件全部暴露

配置后:

这时的location后面的路径是/cc1/

server {

  listen 8081;

  server_name localhost;

     location /cc1/ {

        autoindex on;

        alias /test/;

        autoindex_exact_size off;

        autoindex_localtime on;

        charset utf-8;

        index index.html index.htm;

     }

}

image.png

继续访问:http://localhost:8081/cc1../

访问失败,目录穿越漏洞已修复

image.png

但是需要注意,如果将alias配置成root的话,需要设置location配置到/,如果location后配置到其他路径的话,那么会报404错误

例:

配置location后的路径为/cc1

image.png


现在访问http://192.168.88.138:8081/cc1/1.html,发现报404错误

image.png


这是将location改成到/后再次访问,成功

image.png

image.png


扫描二维码推送至手机访问。

版权声明:本文由个人博客发布,如需转载请注明出处。

本文链接:https://opszzfwordpress.club/post/81.html

分享给朋友:
返回列表

没有更早的文章了...

下一篇:nginx取消文件共享

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。