Without AcceptVerbsAttributeyours, it Actionwill accept requests with any HTTP methods. BTW you can restrict HTTP methods in your RouteTable:
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" },
new { HttpMethod = new HttpMethodConstraint(
new[] { "GET", "POST" }) }
);