Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: isaacs/st
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ae7b6768c1d91dd48b368b2b921193fc2b36cff1
Choose a base ref
...
head repository: isaacs/st
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0e87caf96baab79a170459901b0e068a481018d0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Oct 13, 2017

  1. Verified

    This commit was signed with the committer’s verified signature.
    xrmx Riccardo Magliocchetti
    Copy the full SHA
    579960c View commit details
  2. 1.2.2

    rvagg committed Oct 13, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    xrmx Riccardo Magliocchetti
    Copy the full SHA
    0e87caf View commit details
Showing with 32 additions and 18 deletions.
  1. +1 −1 package.json
  2. +19 −16 st.js
  3. +10 −0 test/basic.js
  4. +2 −1 test/common.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "st",
"version": "1.2.1",
"version": "1.2.2",
"description": "A module for serving static files. Does etags, caching, etc.",
"main": "st.js",
"bin": "bin/server.js",
35 changes: 19 additions & 16 deletions st.js
Original file line number Diff line number Diff line change
@@ -164,8 +164,8 @@ Mount.prototype.getCacheOptions = function (opt) {
return c
}

// get a path from a url
Mount.prototype.getPath = function (u) {
// get the path component from a URI
Mount.prototype.getUriPath = function (u) {
var p = url.parse(u).pathname

// Encoded dots are dots
@@ -179,8 +179,7 @@ Mount.prototype.getPath = function (u) {

// Make sure it starts with a slash
p = p.replace(/^\//, '/')

if (p.match(/[\/\\]\.\.[\/\\]/)) {
if ((/[\/\\]\.\.([\/\\]|$)/).test(p)) {
// traversal urls not ever even slightly allowed. clearly shenanigans
// send a 403 on that noise, do not pass go, do not collect $200
return 403
@@ -202,8 +201,12 @@ Mount.prototype.getPath = function (u) {
u = u.substr(this.url.length)
if (u.charAt(0) !== '/') u = '/' + u

p = path.join(this.path, u)
return p
return u
}

// get a path from a url
Mount.prototype.getPath = function (u) {
return path.join(this.path, u)
}

// get a url from a path
@@ -223,25 +226,25 @@ Mount.prototype.serve = function (req, res, next) {

// querystrings are of no concern to us
if (!req.sturl)
req.sturl = url.parse(req.url).pathname
req.sturl = this.getUriPath(req.url)

var p = this.getPath(req.sturl)
// don't allow dot-urls by default, unless explicitly allowed.
// If we got a 403, then it's explicitly forbidden.
if (req.sturl === 403 || (!this.opt.dot && (/(^|\/)\./).test(req.sturl))) {
res.statusCode = 403
res.end('Forbidden')
return true
}

// Falsey here means we got some kind of invalid path.
// Probably urlencoding we couldn't understand, or some
// other "not compatible with st, but maybe ok" thing.
if (!p) {
if (typeof req.sturl !== 'string' || req.sturl == '') {
if (typeof next === 'function') next()
return false
}

// don't allow dot-urls by default, unless explicitly allowed.
// If we got a 403, then it's explicitly forbidden.
if (p === 403 || !this.opt.dot && req.sturl.match(/(^|\/)\./)) {
res.statusCode = 403
res.end('Forbidden')
return true
}
var p = this.getPath(req.sturl)

// now we have a path. check for the fd.
this.cache.fd.get(p, function (er, fd) {
10 changes: 10 additions & 0 deletions test/basic.js
Original file line number Diff line number Diff line change
@@ -123,3 +123,13 @@ test('shenanigans', function(t) {
t.end()
})
})


test('shenanigans2', function(t) {
req('/test//foo/%2e%2E', function(er, res) {
if (er)
throw er
t.equal(res.statusCode, 403)
t.end()
})
})
3 changes: 2 additions & 1 deletion test/common.js
Original file line number Diff line number Diff line change
@@ -26,7 +26,8 @@ function req (url, headers, cb) {
if (typeof headers === 'function') cb = headers, headers = {}
request({ encoding: null,
url: 'http://localhost:' + port + url,
headers: headers }, cb)
headers: headers,
followRedirect: false }, cb)
}