Avoid overly permissive CORS
ID: java-security/permissive-cors
Language: Java
Severity: Warning
Category: Security
Description
Do not set overly permissive CORS requests. Restrict the host allowed to communicate with to prevent potential malicious requests in your application.
Learn More
Non-Compliant Code Examples
class NotCompliant {
@GET
@Path("/some/path")
public Response getRoute() {
response.addHeader("Access-Control-Allow-Origin: *");
}
}
class NotCompliant {
@GET
@Path("/some/path")
public Response getRoute() {
response.addHeader("Access-Control-Allow-Origin", "*");
}
}
Compliant Code Examples
class NotCompliant {
@GET
@Path("/some/path")
public Response getRoute() {
response.addHeader("Access-Control-Allow-Origin", "https://developer.mozilla.org");
}
}
class NotCompliant {
@GET
@Path("/some/path")
public Response getRoute() {
response.addHeader("Access-Control-Allow-Origin: https://developer.mozilla.org");
}
}
Seamless integrations. Try Datadog Code Analysis