Grails

Handling of Different Injection Attacks in Grails

While implementing Security in my Sample Application I have read various types of Injection attacks that an application may suffer. Reference: Grails In Action 1. SQL Injection Attack: def username=”gautam” Post.findAll(” from Post as post WHERE post.user.username=’${username}’ “) This Query uses a local username property to control which posts are returned. Try this Query in […]

Gautam Malhotra
Gautam Malhotra
Read
Services