I am using the CrudRepository.save(entity) method from the Spring framework in my code. Will CrudRepository.save prevent malicious data from entering the database?
Data that can be used for second order SQL injection. Such as "A' OR 1=1" Is there validation of the strings in "entity" before they are inserted into the database?
Data that can be used for second order SQL injection. Such as "A' OR 1=1" Is there validation of the strings in "entity" before they are inserted into the database?