tufted: more robust merge-pathname impl
This commit is contained in:
parent
464d046b5a
commit
2e5a8a572e
@ -16,10 +16,18 @@
|
|||||||
|
|
||||||
(print (.. "TFTP serving from " options.base-directory))
|
(print (.. "TFTP serving from " options.base-directory))
|
||||||
|
|
||||||
(fn merge-pathname [directory filename]
|
;; this is a copy of anoia append-path
|
||||||
(if (directory:match "/$")
|
(fn merge-pathname [dirname filename]
|
||||||
(.. directory filename)
|
(let [base (or (string.match dirname "(.*)/$") dirname)
|
||||||
(.. directory "/" filename)))
|
result []]
|
||||||
|
(each [component (string.gmatch filename "([^/]+)")]
|
||||||
|
(if (and (= component "..") (> (# result) 0))
|
||||||
|
(table.remove result)
|
||||||
|
(= component "..")
|
||||||
|
(error "path traversal attempt")
|
||||||
|
true
|
||||||
|
(table.insert result component)))
|
||||||
|
(.. base "/" (table.concat result "/"))))
|
||||||
|
|
||||||
(->
|
(->
|
||||||
(tftp:listen
|
(tftp:listen
|
||||||
|
Loading…
Reference in New Issue
Block a user