4

我看到当我对启用 CORS 的 Restify 服务执行 HTTP GET 时,默认情况下 access-control-allow-origin 标头设置为通配符。我宁愿它与我发送的 Origin 相呼应,因为这是每个OWASP的最佳实践。有什么建议我该怎么做?尝试了 API 文档中的默认标头、格式化程序等,但没有运气。

这就是我所做的:

    var server = restify.createServer({
        name: 'People Data Service',
        version: '1.0.6'
    });        
        server.pre(wrapper(restify.pre.pause()));
        // Cleans up sloppy paths
        server.pre(wrapper(restify.pre.sanitizePath()));
        server.use(wrapper(restify.acceptParser(server.acceptable)));
        server.use(wrapper(restify.authorizationParser()));
        server.use(wrapper(restify.queryParser()));
        server.use(wrapper(restify.bodyParser()));
        server.use(wrapper(restify.CORS()));
    //    server.use(wrapper(restify.fullResponse()));

        // Needed this for OPTIONS preflight request: https://github.com/mcavage/node-restify/issues/284
        function unknownMethodHandler(req, res) {
            if (req.method.toUpperCase() === 'OPTIONS') {
                console.log('Received an options method request from: ' + req.headers.origin);
                var allowHeaders = ['Accept', 'Accept-Version', 'Content-Type', 'Api-Version', 'Origin', 'X-Requested-With', 'Authorization'];

                if (res.methods.indexOf('OPTIONS') === -1) {
                    res.methods.push('OPTIONS');
                }

                res.header('Access-Control-Allow-Credentials', false);
                res.header('Access-Control-Expose-Headers', true);
                res.header('Access-Control-Allow-Headers', allowHeaders.join(', '));
                res.header('Access-Control-Allow-Methods', res.methods.join(', '));
                res.header('Access-Control-Allow-Origin', req.headers.origin);
                res.header('Access-Control-Max-Age', 1209600);

                return res.send(204);
            }
            else {
                return res.send(new restify.MethodNotAllowedError());
            }
        }
    server.on('MethodNotAllowed', wrapper(unknownMethodHandler));
4

3 回答 3

0

我在我的 restify 基础应用程序上这样做:

    //setup cors
    restify.CORS.ALLOW_HEADERS.push('accept');
    restify.CORS.ALLOW_HEADERS.push('sid');
    restify.CORS.ALLOW_HEADERS.push('lang');
    restify.CORS.ALLOW_HEADERS.push('origin');
    restify.CORS.ALLOW_HEADERS.push('withcredentials');
    restify.CORS.ALLOW_HEADERS.push('x-requested-with');
    server.use(restify.CORS());

您需要先使用restify.CORS.ALLOW_HEADERS.push 方法将您想要的标头推送到restify,然后使用CORS 中间件来启动CORS 功能。

于 2013-09-26T21:49:32.363 回答
0

我找到了一种方法,通过对 Restify 中的 cors.js 文件进行简单修改,如下所示:

Index: node_modules/restify/lib/plugins/cors.js
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- node_modules/restify/lib/plugins/cors.js    (revision )
+++ node_modules/restify/lib/plugins/cors.js    (revision )
@@ -102,6 +102,7 @@
                                 res.setHeader(AC_ALLOW_ORIGIN, origin);
                                 res.setHeader(AC_ALLOW_CREDS, 'true');
                         } else {
+                            origin = req.headers['origin'];
                                 res.setHeader(AC_ALLOW_ORIGIN, origin);
                         }

即使凭据设置为 false,这也会将来源添加到响应标头中。此外,如果您想将您的来源列入白名单,您只需将其添加到您的配置中:

server.use(restify.CORS({'origins': ['http://localhost', 'https://domain.my.com', 'https://anotherDomain.my.com']}));
于 2013-10-02T19:19:31.537 回答
0

这真的很简单。

您需要初始化一个服务器,然后才能设置它!

var server = restify.createServer( ... );

要配置 CORS,请执行以下步骤:

1.你需要指定ALLOW_HEADERS

这是用于设置 CORS 请求是否到达的标头数组。

2.配置CORS-Plugin

server.use(restify.CORS({ credentials: true }));

restif-CORS-plugin 将使用选项 'credentials' 来添加 Access-Control-Allow-Credentials 和 Access-Control-Allow-Origin。

在客户端,在 xhr-transport 上使用 withCredentials = true 很重要。

我希望这些答案会对你有所帮助。

...编写代码并玩得开心!

于 2015-11-23T21:34:38.187 回答