Skip to content

v13.6.0

Compare
Choose a tag to compare
@Nechelovek Nechelovek released this 19 Feb 09:49
· 72 commits to master since this release
26229a3

New XssSanitizerAttribute was added.

How you can use it:

  1. With bad request when xss was detected:
[XssSanitizer(IsReplace = false)]
public string ParameterName { get; set; }
  1. With clean xss injection
[XssSanitizer]
public string ParameterName { get; set; }