mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2020-11-18 19:53:40 -08:00
fixed xss issue in text preview
* reported by Tim / polym
This commit is contained in:
parent
2b58d3041d
commit
98399c91dd
@ -34,6 +34,7 @@ import (
|
|||||||
"compress/gzip"
|
"compress/gzip"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"html"
|
||||||
html_template "html/template"
|
html_template "html/template"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
@ -102,7 +103,7 @@ func previewHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
output := blackfriday.MarkdownCommon(data)
|
output := blackfriday.MarkdownCommon(data)
|
||||||
content = html_template.HTML(output)
|
content = html_template.HTML(output)
|
||||||
} else if strings.HasPrefix(contentType, "text/plain") {
|
} else if strings.HasPrefix(contentType, "text/plain") {
|
||||||
content = html_template.HTML(fmt.Sprintf("<pre>%s</pre>", data))
|
content = html_template.HTML(fmt.Sprintf("<pre>%s</pre>", html.EscapeString(string(data))))
|
||||||
} else {
|
} else {
|
||||||
templatePath = "download.sandbox.html"
|
templatePath = "download.sandbox.html"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user