-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from david-bezero/remove-bluemonday
Remove bluemonday and fix double-escaping
- Loading branch information
Showing
6 changed files
with
54 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ import ( | |
|
||
"github.com/go-pkgz/rest" | ||
"github.com/golang-jwt/jwt" | ||
"github.com/microcosm-cc/bluemonday" | ||
|
||
"github.com/go-pkgz/auth/avatar" | ||
"github.com/go-pkgz/auth/logger" | ||
|
@@ -134,9 +133,7 @@ func (e VerifyHandler) LoginHandler(w http.ResponseWriter, r *http.Request) { | |
// GET /login?site=site&user=name&[email protected] | ||
func (e VerifyHandler) sendConfirmation(w http.ResponseWriter, r *http.Request) { | ||
|
||
user, address := r.URL.Query().Get("user"), r.URL.Query().Get("address") | ||
user = e.sanitize(user) | ||
address = e.sanitize(address) | ||
user, address, site := r.URL.Query().Get("user"), r.URL.Query().Get("address"), r.URL.Query().Get("site") | ||
|
||
if user == "" || address == "" { | ||
rest.SendErrorJSON(w, r, e.L, http.StatusBadRequest, fmt.Errorf("wrong request"), "can't get user and address") | ||
|
@@ -150,7 +147,7 @@ func (e VerifyHandler) sendConfirmation(w http.ResponseWriter, r *http.Request) | |
}, | ||
SessionOnly: r.URL.Query().Get("session") != "" && r.URL.Query().Get("session") != "0", | ||
StandardClaims: jwt.StandardClaims{ | ||
Audience: e.sanitize(r.URL.Query().Get("site")), | ||
Audience: site, | ||
ExpiresAt: time.Now().Add(30 * time.Minute).Unix(), | ||
NotBefore: time.Now().Add(-1 * time.Minute).Unix(), | ||
Issuer: e.Issuer, | ||
|
@@ -179,10 +176,10 @@ func (e VerifyHandler) sendConfirmation(w http.ResponseWriter, r *http.Request) | |
Token string | ||
Site string | ||
}{ | ||
User: user, | ||
Address: address, | ||
User: trim(user), | ||
Address: trim(address), | ||
Token: tkn, | ||
Site: r.URL.Query().Get("site"), | ||
Site: site, | ||
} | ||
buf := bytes.Buffer{} | ||
if err = emailTmpl.Execute(&buf, tmplData); err != nil { | ||
|
@@ -212,14 +209,8 @@ Confirmation for {{.User}} {{.Address}}, site {{.Site}} | |
Token: {{.Token}} | ||
` | ||
|
||
func (e VerifyHandler) sanitize(inp string) string { | ||
p := bluemonday.UGCPolicy() | ||
res := p.Sanitize(inp) | ||
res = template.HTMLEscapeString(res) | ||
res = strings.ReplaceAll(res, "&", "&") | ||
res = strings.ReplaceAll(res, """, "\"") | ||
res = strings.ReplaceAll(res, "'", "'") | ||
res = strings.ReplaceAll(res, "\n", "") | ||
func trim(inp string) string { | ||
res := strings.ReplaceAll(inp, "\n", "") | ||
res = strings.TrimSpace(res) | ||
if len(res) > 128 { | ||
return res[:128] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ import ( | |
"fmt" | ||
"net/http" | ||
"net/http/httptest" | ||
"net/url" | ||
"strings" | ||
"testing" | ||
"time" | ||
|
@@ -59,7 +60,7 @@ func TestVerifyHandler_LoginSendConfirm(t *testing.T) { | |
assert.Equal(t, "test", e.Name()) | ||
} | ||
|
||
func TestVerifyHandler_LoginSendConfirmRejected(t *testing.T) { | ||
func TestVerifyHandler_LoginSendConfirmEscapesBadInput(t *testing.T) { | ||
|
||
emailer := mockSender{} | ||
e := VerifyHandler{ | ||
|
@@ -77,20 +78,22 @@ func TestVerifyHandler_LoginSendConfirmRejected(t *testing.T) { | |
|
||
handler := http.HandlerFunc(e.LoginHandler) | ||
rr := httptest.NewRecorder() | ||
badUser := "%3C%21DOCTYPE%20html%3E%20%0A%3Chtml%3E%20%0A%3Chead%3E%0A%3Cmeta%20name%3D%22viewport%22%20content%3D%22width%3Ddevice-width%2C%20initial-scale%3D1%22%3E%0A%3Ctitle%3E%20Login%20Page%20%3C%2Ftitle%3E%0A%3Cstyle%3E%20%0ABody%20%7B%0A%20%20font-family%3A%20Calibri%2C%20Helvetica%2C%20sans-serif%3B%0A%20%20background-color%3A%20pink%3B%0A%7D%0Abutton%20%7B%20%0A%20%20%20%20%20%20%20background-color%3A%20%234CAF50%3B%20%0A%20%20%20%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20%20%20%20%20color%3A%20orange%3B%20%0A%20%20%20%20%20%20%20%20padding%3A%2015px%3B%20%0A%20%20%20%20%20%20%20%20margin%3A%2010px%200px%3B%20%0A%20%20%20%20%20%20%20%20border%3A%20none%3B%20%0A%20%20%20%20%20%20%20%20cursor%3A%20pointer%3B%20%0A%20%20%20%20%20%20%20%20%20%7D%20%0A%20form%20%7B%20%0A%20%20%20%20%20%20%20%20border%3A%203px%20solid%20%23f1f1f1%3B%20%0A%20%20%20%20%7D%20%0A%20input%5Btype%3Dtext%5D%2C%20input%5Btype%3Dpassword%5D%20%7B%20%0A%20%20%20%20%20%20%20%20width%3A%20100%25%3B%20%0A%20%20%20%20%20%20%20%20margin%3A%208px%200%3B%0A%20%20%20%20%20%20%20%20padding%3A%2012px%2020px%3B%20%0A%20%20%20%20%20%20%20%20display%3A%20inline-block%3B%20%0A%20%20%20%20%20%20%20%20border%3A%202px%20solid%20green%3B%20%0A%20%20%20%20%20%20%20%20box-sizing%3A%20border-box%3B%20%0A%20%20%20%20%7D%0A%20button%3Ahover%20%7B%20%0A%20%20%20%20%20%20%20%20opacity%3A%200.7%3B%20%0A%20%20%20%20%7D%20%0A%20%20.cancelbtn%20%7B%20%0A%20%20%20%20%20%20%20%20width%3A%20auto%3B%20%0A%20%20%20%20%20%20%20%20padding%3A%2010px%2018px%3B%0A%20%20%20%20%20%20%20%20margin%3A%2010px%205px%3B%0A%20%20%20%20%7D%20%0A%20%20%20%20%20%20%0A%20%20%20%0A%20.container%20%7B%20%0A%20%20%20%20%20%20%20%20padding%3A%2025px%3B%20%0A%20%20%20%20%20%20%20%20background-color%3A%20lightblue%3B%0A%20%20%20%20%7D%20%0A%3C%2Fstyle%3E%20%0A%3C%2Fhead%3E%20%20%0A%3Cbody%3E%20%20%0A%20%20%20%20%3Ccenter%3E%20%3Ch1%3E%20Student%20Login%20Form%20%3C%2Fh1%3E%20%3C%2Fcenter%3E%20%0A%20%20%20%20%3Cform%3E%0A%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22container%22%3E%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Clabel%3EUsername%20%3A%20%3C%2Flabel%3E%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22text%22%20placeholder%3D%22Enter%20Username%22%20name%3D%22username%22%20required%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Clabel%3EPassword%20%3A%20%3C%2Flabel%3E%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22password%22%20placeholder%3D%22Enter%20Password%22%20name%3D%22password%22%20required%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cbutton%20type%3D%22submit%22%3ELogin%3C%2Fbutton%3E%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cinput%20type%3D%22checkbox%22%20checked%3D%22checked%22%3E%20Remember%20me%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cbutton%20type%3D%22button%22%20class%3D%22cancelbtn%22%3E%20Cancel%3C%2Fbutton%3E%20%0A%20%20%20%20%20%20%20%20%20%20%20%20Forgot%20%3Ca%20href%3D%22%23%22%3E%20password%3F%20%3C%2Fa%3E%20%0A%20%20%20%20%20%20%20%20%3C%2Fdiv%3E%20%0A%20%20%20%20%3C%2Fform%3E%20%20%20%0A%3C%2Fbody%3E%20%20%20%0A%3C%2Fhtml%3E%0A%0A%20%0A" | ||
req, err := http.NewRequest("GET", "/[email protected]&user="+badUser+"&site=remark42", http.NoBody) | ||
badData := "<html><script>nasty stuff</script><escaped></html>" | ||
req, err := http.NewRequest("GET", "/[email protected]&user="+url.QueryEscape(badData)+"&site="+url.QueryEscape(badData), http.NoBody) | ||
require.NoError(t, err) | ||
handler.ServeHTTP(rr, req) | ||
assert.Equal(t, 200, rr.Code) | ||
assert.Equal(t, "[email protected]", emailer.to) | ||
assert.Contains(t, emailer.text, "Password : [email protected] remark42 token:") | ||
expectedEscaped := "<html><script>nasty stuff</script>&lt;escaped&gt;</html>" | ||
assert.Contains(t, emailer.text, expectedEscaped+" [email protected] "+expectedEscaped+" token:") | ||
|
||
tknStr := strings.Split(emailer.text, " token:")[1] | ||
tkn, err := e.TokenService.Parse(tknStr) | ||
assert.NoError(t, err) | ||
t.Logf("%s %+v", tknStr, tkn) | ||
assert.Equal(t, "<h1> Student Login Form </h1> <div> Username : Password : ::[email protected]", tkn.Handshake.ID) | ||
assert.Equal(t, "remark42", tkn.Audience) | ||
// not escaped in these fields as they are not rendered as HTML | ||
assert.Equal(t, badData+"::[email protected]", tkn.Handshake.ID) | ||
assert.Equal(t, badData, tkn.Audience) | ||
assert.True(t, tkn.ExpiresAt > tkn.NotBefore) | ||
|
||
assert.Equal(t, "test", e.Name()) | ||
|