XSS validation from MVC action from JSON ajax post

后端 未结 1 1704
轻奢々
轻奢々 2021-01-01 02:57

Is there a way to manually call the XSS detection from MVC, such as from a filter, in cases when json is posted to an MVC action (like $.ajax post from JQuery with json cont

相关标签:
1条回答
  • 2021-01-01 03:12

    I found a solution that works for my situation. In this case, we had JQuery using $.ajax to post JSON to the MVC action. The default model binder does not validate posted JSON allowing unsafe XSS to be posted against our action.

    To solve this, I found the RequestValidator has a static method InvokeIsValidRequestString that allowed validating a specific string to detect XSS (since every solution I had found until now reinvented the wheel here and did own XSS check for white/black list). Then it was just a matter of limiting the action to the appropriate scenario, getting the posted JSON, and throwing the validation error if XSS was detected.

    public class ValidateJsonXssAttribute : ActionFilterAttribute
    {
        public override void OnActionExecuting(ActionExecutingContext filterContext)
        {
            var request = filterContext.HttpContext?.Request;
            if (request != null && "application/json".Equals(request.ContentType, StringComparison.OrdinalIgnoreCase))
            {
                if (request.ContentLength > 0 && request.Form.Count == 0) // 
                {
                    if (request.InputStream.Position > 0)
                        request.InputStream.Position = 0; // InputStream has already been read once from "ProcessRequest"
                    using (var reader = new StreamReader(request.InputStream))
                    {
                        var postedContent = reader.ReadToEnd(); // Get posted JSON content
                        var isValid = RequestValidator.Current.InvokeIsValidRequestString(HttpContext.Current, postedContent,
                            RequestValidationSource.Form, "postedJson", out var failureIndex); // Invoke XSS validation
                        if (!isValid) // Not valid, so throw request validation exception
                            throw new HttpRequestValidationException("Potentially unsafe input detected");
                    }
                }
            }
        }
    }
    

    Then, I can just decorate relevant MVC actions expecting JSON-posted data that might bypass the standard XSS prevention:

    [HttpPost]
    [ValidateJsonXss]
    public ActionResult PublishRecord(RecordViewModel vm) { ... }
    

    I was fortunate to stumble on thet OWASP .NET recommendations in which it recommended extending the RequestValidator object, which exposes the string validation done by the ValidateInput automatically utilized by MVC for other scenarios of query string, form collection, and cookie values.

    For more info: https://www.owasp.org/index.php/ASP.NET_Request_Validation

    If anyone has other recommendations, I would love to see other approaches.

    0 讨论(0)
提交回复
热议问题