Today i test my ASP.NET MVC web-application and i find out anyone can easily submit a form of our website without coming on my website?
Ex: example.com/home/test
[HttpPost]
public ActionResult Test(string name)
{
return View("home");
}
<form id="myForm" method="post" action="example.com/home/test">
<input type="text" name="name" />
<input type="submit" />
</form>
if other website make this form that when user fill the form that my website will be affect.
Are i can check the request made by user through my website or other.