Missing ValidateAntiForgeryToken
h3xstream opened this issue · 0 comments
h3xstream commented
Very simple pattern..
Vulnerable :
[HttpPost]
public ActionResult ControllerMethod(string input) {
return null;
}
Solution:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult ControllerMethod(string input) {
return null;
}