I've creating a set of CRUD pages for editing an item with MVC, but I'm confused about how I can ensure that the item a user edits is the same item that they post to update.
Currently I have a HiddenFor helper that stores the ItemID, which of course posts to the EditItem action, populating its model so I can update it...
But what happens if they go in and edit that hidden Id and change it to something else? I can certainly add an action filter to prevent them from editing an item they do not have access to, BUT what if they change the id to an item they DO have access to?
It's not a permission error but a data integrity error. I want to ensure that the item they retrieved from the GET for editing the item is the same one that they POST to update its content.
What is the correct way to do this?
If they have access to it, they are basically "hacking your application" to do something they already can do via a GUI (supposedly...). Basically, it would be the same thing as attempting to edit that other item. And if someone is modifying source code on the client side, weird things might indeed happen.
Of course, there should be server side access control and validation, so any invalid data is rejected. But if all they pass in is valid, why should they not be able to? There's not really much one can do. A request is a request - if it's valid, it's valid. No matter where it comes from.
What if I build a request in software like Fiddler? Then I can modify my data without even seeing your web application - not "editing" something in the first place at all.