Я завязываю комментировать в движке блога XSS-safe. Перепробовал много разных подходов, но найти это очень сложно.
Когда я отображаю комментарии, я впервые использую Microsoft AntiXss 3.0 для HTML-кодирования всего этого. Затем я пытаюсь html декодировать безопасные теги с использованием подхода белого списка.
Рассматривал пример Стива Даунинга в ветке Этвуда "Sanitize HTML" в refactormycode.
Моя проблема в том, что библиотека AntiXss кодирует значения в & # DECIMAL; нотации, и я не знаю, как переписать пример Стива, так как мои знания регулярных выражений ограничены.
Я попробовал следующий код, где я просто заменил сущности на десятичную форму, но она не работает должным образом.
< with <
> with >
Моя перезапись:
class HtmlSanitizer
{
/// <summary>
/// A regex that matches things that look like a HTML tag after HtmlEncoding. Splits the input so we can get discrete
/// chunks that start with < and ends with either end of line or >
/// </summary>
private static Regex _tags = new Regex("<(?!>).+?(>|$)", RegexOptions.Singleline | RegexOptions.ExplicitCapture | RegexOptions.Compiled);
/// <summary>
/// A regex that will match tags on the whitelist, so we can run them through
/// HttpUtility.HtmlDecode
/// FIXME - Could be improved, since this might decode > etc in the middle of
/// an a/link tag (i.e. in the text in between the opening and closing tag)
/// </summary>
private static Regex _whitelist = new Regex(@"
^</?(a|b(lockquote)?|code|em|h(1|2|3)|i|li|ol|p(re)?|s(ub|up|trong|trike)?|ul)>$
|^<(b|h)r\s?/?>$
|^<a(?!>).+?>$
|^<img(?!>).+?/?>$",
RegexOptions.Singleline | RegexOptions.IgnorePatternWhitespace |
RegexOptions.ExplicitCapture | RegexOptions.Compiled);
/// <summary>
/// HtmlDecode any potentially safe HTML tags from the provided HtmlEncoded HTML input using
/// a whitelist based approach, leaving the dangerous tags Encoded HTML tags
/// </summary>
public static string Sanitize(string html)
{
string tagname = "";
Match tag;
MatchCollection tags = _tags.Matches(html);
string safeHtml = "";
// iterate through all HTML tags in the input
for (int i = tags.Count - 1; i > -1; i--)
{
tag = tags[i];
tagname = tag.Value.ToLowerInvariant();
if (_whitelist.IsMatch(tagname))
{
// If we find a tag on the whitelist, run it through
// HtmlDecode, and re-insert it into the text
safeHtml = HttpUtility.HtmlDecode(tag.Value);
html = html.Remove(tag.Index, tag.Length);
html = html.Insert(tag.Index, safeHtml);
}
}
return html;
}
}
Мой входной тестовый html:
<p><script language="javascript">alert('XSS')</script><b>bold should work</b></p>
После AntiXss оно превращается в:
<p><script language="javascript">alert('XSS')</script><b>bold should work</b></p>
Когда я запускаю версию Sanitize (строка html) выше, она дает мне:
<p><script language="javascript">alert('XSS')</script><b>bold should work</b></p>
Регулярное выражение соответствует сценарию из белого списка, который мне не нужен. Любая помощь с этим будет высоко ценится.