51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

通过 Nginx 修复 DataEase CORS 漏洞

1 漏洞描述 {#heading-1}

CORS 不安全配置漏洞指的是在跨域资源共享过程中,由于资源服务器的响应头 Access-Control-Allow-Origin 配置不当导致本应该受限访问的请求网站可以绕过访问控制策略读取资源服务器的数据,造成用户隐私泄露,信息窃取甚至账户劫持的危害。

2 漏洞细节 {#heading-2}

 ```
https://xxx.com/external/
```
发现存在该漏洞。

发现 `Access-Control-Allow-Origin` 的值为


    https://xxx.com.qa5bnet.cn




漏洞探测过程的请求流为
第 1 个请求为


    GET /external/ HTTP/1.1
    Host: xxx.com
    User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
    Accept-Language: en
    Origin: https://xxx.com.qa5bnet.cn
    Sec-Fetch-Dest: document
    Sec-Fetch-Mode: navigate
    Sec-Fetch-Site: none
    Sec-Fetch-User: ?1
    Upgrade-Insecure-Requests: 1
    Accept-Encoding: gzip
     
     




第 1 个响应为


    HTTP/1.1 401
    Access-Control-Allow-Methods: GET,POST,OPTIONS,PUT,DELETE
    Access-Control-Allow-Origin: https://xxx.com.qa5bnet.cn
    Connection: keep-alive
    Content-Length: 0
    Date: Mon, 13 Nov 2023 02:07:00 GMT
    Www-Authenticate: BASIC realm="application"
     
     
    ```</code></pre>
     <p style=""></p>
     <h1 style="" id="heading-3">3 漏洞修复</h1>
     <p style="">通过 Nginx http_origin 添加 CORS 头,来防止未经授权的跨域请求,只允许来自 <code>http://xxx.com</code> 或 <code>https://xxx.com</code> 的请求;</p>
     <pre><code> set $flag 0;
     
            if ($http_origin = ''){
                set $flag "${flag}1";
            }
     
            if ($http_origin !~* ^(http|https)://xxx\.com$){
                set $flag "${flag}1";
            }
     
            if ($flag = "01"){
                return 403;
            }
     
            if ($http_origin ~* ^(http|https)://xxx\.com$) {
                add_header Access-Control-Allow-Origin $http_origin;
                add_header Access-Control-Allow-Methods GET,POST;
                add_header Access-Control-Allow-Credentials true;
                add_header Access-Control-Allow-Headers DNT,Keep-Alive,User-Agent,If-Modified-Since,Cache-Control,Content-Type;
    }</code></pre>
     <p style=""></p>
     <p style="">以上配置是 Nginx 对 <code>$http_origin</code> 进行了多次检查,然后根据检查结果设置了一个标志&nbsp;<code>$flag</code>。最后,根据 <code>$flag</code> 的值,配置是否允许跨域请求,以及是否添加了CORS头。</p>
     <p style="">这个配置的逻辑是:</p>
     <ol>
      <li><p style="">如果 <code>$http_origin</code> 为空字符串,或者不是以 <code>http://xxx.com</code> 或 <code>https://xxx.com</code> 开头,将 <code>$flag</code> 设置为 <code>"01"</code>。</p></li>
      <li><p style="">如果 <code>$flag</code> 的值为 <code>"01"</code>,返回 403 状态码,拒绝访问。</p></li>
      <li><p style="">如果 <code>$http_origin</code> 的值以 <code>http://xxx.com</code> 或 <code>https://xxx.com</code> 开头,添加CORS头。</p></li>
     </ol>
     <p style=""></p>
     <p style="">配置所在位置如下:</p>
     <pre><code>server {
            listen 80;
            server_name xxx.com;
    ################## CORE 配置 #################
            location / {
                set $flag 0;
         
                if ($http_origin = ''){
                    set $flag "${flag}1";
                }
         
                if ($http_origin !~* ^(http|https)://xxx\.com$){
                    set $flag "${flag}1";
                }
         
                if ($flag = "01"){
                    return 403;
                }
         
                if ($http_origin ~* ^(http|https)://xxx\.com$) {
                    add_header Access-Control-Allow-Origin $http_origin;
                    add_header Access-Control-Allow-Methods GET,POST;
                    add_header Access-Control-Allow-Credentials true;
                    add_header Access-Control-Allow-Headers DNT,Keep-Alive,User-Agent,If-Modified-Since,Cache-Control,Content-Type;
                }
    ###########################################
           
                #将IP和端口改为DataEase服务器的访问地址和端口
                proxy_pass   http://192.168.110.251:81/;
                server_name_in_redirect off;
     
                # websocket 代理
                proxy_http_version      1.1;
                proxy_set_header        Upgrade         $http_upgrade;
                proxy_set_header        Connection "upgrade";
     
                proxy_set_header           Host $host:$server_port;
                proxy_set_header           X-Real-IP $remote_addr;
                proxy_set_header           X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header           X-Forwarded-Proto $scheme;
     
                
            }
      }</code></pre>
     <p style=""></p>
    </article>



赞(0)
未经允许不得转载:工具盒子 » 通过 Nginx 修复 DataEase CORS 漏洞