I am using restTemplate for synchronous inter-service communication in a microservices architecture.
When we completed Veracode scan, we are getting Server-Side Request Forgery (SSRF) (CWE ID 918) in getForEntity method.
restTemplate.getForEntity(URL, Entity.class);
Not sure why I am getting this SSRF issue?.
What would be the possible fix for this?