mirror of https://github.com/adamdruppe/arsd.git
better sanitiations
This commit is contained in:
parent
af2ee83505
commit
0d8022877b
10
html.d
10
html.d
|
@ -139,8 +139,8 @@ Element sanitizedHtml(/*in*/ Element userContent, string idPrefix = null, HtmlFe
|
||||||
// this space is intentionally left blank
|
// this space is intentionally left blank
|
||||||
} else {
|
} else {
|
||||||
// it's allowed but let's make sure it's completely valid
|
// it's allowed but let's make sure it's completely valid
|
||||||
if(!(allow & HtmlFeatures.classes)) {
|
if(k == "class" && (allow & HtmlFeatures.classes)) {
|
||||||
// don't allow the class attribute
|
e.setAttribute("class", v);
|
||||||
} else if(k == "id") {
|
} else if(k == "id") {
|
||||||
if(idPrefix !is null)
|
if(idPrefix !is null)
|
||||||
e.setAttribute(k, idPrefix ~ v);
|
e.setAttribute(k, idPrefix ~ v);
|
||||||
|
@ -149,9 +149,9 @@ Element sanitizedHtml(/*in*/ Element userContent, string idPrefix = null, HtmlFe
|
||||||
if(allow & HtmlFeatures.css) {
|
if(allow & HtmlFeatures.css) {
|
||||||
e.setAttribute(k, sanitizeCss(v));
|
e.setAttribute(k, sanitizeCss(v));
|
||||||
}
|
}
|
||||||
} else if(k == "href" || k == "src")
|
} else if(k == "href" || k == "src") {
|
||||||
e.setAttribute(k, sanitizeUrl(v));
|
e.setAttribute(k, sanitizeUrl(v));
|
||||||
else
|
} else
|
||||||
e.setAttribute(k, v); // allowed attribute
|
e.setAttribute(k, v); // allowed attribute
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -179,7 +179,7 @@ string sanitizeCss(string css) {
|
||||||
|
|
||||||
string sanitizeUrl(string url) {
|
string sanitizeUrl(string url) {
|
||||||
// FIXME: support other options; this is more restrictive than it has to be
|
// FIXME: support other options; this is more restrictive than it has to be
|
||||||
if(url.startsWith("http://") || url.startsWith("https://"))
|
if(url.startsWith("http://") || url.startsWith("https://") || url.startsWith("//"))
|
||||||
return url;
|
return url;
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue