I have written a SpringBoot application using IntellIJ as IDE.
My Security team flagged com.fasterxml.jackson.core as a vulnerability since some of its classes (BeanDeserializerFactory.class,SubTypeValidator.class) are vulnerable to attacks.
I have to check whether my code uses these classes.
I was asked to grep my code and see if this class was used anywhere? Can any of you tell me how to do this? Or is there any other way to check if these classes are used?
Thanks in advance.