The example server.js:
var staticHandler = function(request, response) {
var path = request.url;
fs.readFile(__dirname + path, function(err, content) {
doesn't validate the url, so there is nothing stopping it from being e.g. /../spec/server.key (given a few lines later). Given that people are likely to copy the example, setting a safe precedent might be a good idea! :-)
The example server.js:
doesn't validate the url, so there is nothing stopping it from being e.g.
/../spec/server.key(given a few lines later). Given that people are likely to copy the example, setting a safe precedent might be a good idea! :-)