Under Posting Attack in .NET Core

net 6 newbie 121 Reputation points
2024-05-03T10:05:35.66+00:00

In .NET 6 I have a DTO with value data types like int.

But while sending a POST request if user omits the value for that default value is getting assigned without any Error.

What are the best practices to avoid this under posting?

I have tried using [Required] ,[BindRequired] but still not addressed my concern.

I know we can add some other validation attribute to check if value is not equal to 0. But I want to know how to validate the under posting attack.

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,400 questions
{count} votes

1 answer

Sort by: Most helpful
  1. AgaveJoe 27,696 Reputation points
    2024-05-03T14:28:12.4733333+00:00

    Use a nullable int type and check for null.

        public class MyClass
        {
            public int? MyNullableInt { get; set; }
        } 
    

    The official documentation covers model validation.

    https://learn.microsoft.com/en-us/aspnet/core/mvc/models/validation?view=aspnetcore-8.0

    0 comments No comments