A recent MVC3 project of mine has been hacked by my lecturer and he won't tell me exactly how he did it until he makes a presentation to the class in a few weeks. I however cannot wait this long.
My question is, is there a way to intercept the data being sent from a View to a Controllers POST method? If so what is this method known as and how can I stop it?
FOR EXAMPLE:
A registration page that Posts a User object to the database. User object has a boolean Admin which is auto set to false. Hacker intercepts Post and changes value of Users Admin attribute to true.
Any help would be great.