Definition:
Forgery Protection - Any countermeasure in place to protect against Cross-site Request Forgery (CSRF) vulnerabilities or any other trust-exploiting vulnerability. This is usually achieved using a hidden ID field on all forms. It's implemented in Rails with the protect_from_forgery feature.

