Jump to content



Recent Topics

Recent Status Updates

View All Updates
Photo
* * * * * 1 votes

Spring MVC security of submit

spring mvc security

  • Please log in to reply
2 replies to this topic

#1 speculatius

speculatius

    CC Resident

  • Advanced Member
  • PipPipPipPip
  • 92 posts
  • Location:Slovakia
  • Programming Language:C, Java, C++, PHP, PL/SQL

Posted 30 January 2013 - 10:26 AM

Hi all,

currently I am learning spring mvc. Here is my situation...

Lets say I have model class like this:

class Person {
  private String firstname;
  private String surname;
  private Integer likesCount;
  // ...setters and getters
}

Then I have controller to enable user to change his name...

@Controller
class PersonUpdateController {
  @RequestMapping(value = "\person", method = RequestMethod.POST)
  public update(@ModelAttribute("person") Person person, Model model) {
    // ...validation and save
  }
}

And finally I have form...

<f:form action="person" method="post" modelAttribute="person">
  <f:input path="firstname"/>
  <f:input path="surname"/>
  <input type="submit"/>
</f:form>

When user uses this form, he is able to post only firstname and surname to the backend. But technically it is possible to send in request also likesCount, and that is security issue. In php framework Yii it is possible to specify which attributes should be propagated to backend by defining validation criteria on every model class. Is something like that possible in spring? I think some kind of interceptor could do the trick? Thank you.

#2 wim DC

wim DC

    Roar

  • Expert Member
  • PipPipPipPipPipPipPipPip
  • 2,378 posts
  • Programming Language:Java, JavaScript, PL/SQL
  • Learning:Java, PHP

Posted 02 February 2013 - 02:07 PM

Add this somewhere in your controller

@InitBinder
public void initBinder(WebDataBinder binder) {
    binder.setDisallowedFields("likesCount");
}


#3 speculatius

speculatius

    CC Resident

  • Advanced Member
  • PipPipPipPip
  • 92 posts
  • Location:Slovakia
  • Programming Language:C, Java, C++, PHP, PL/SQL

Posted 03 February 2013 - 02:51 AM

Thanks. This looks like what I was looking for.





Similar Topics

  Topic Started By Stats Last Post Info




Also tagged with one or more of these keywords: spring, mvc, security