Fix Hostname Verification Bypass in applications-poc-tools
Description
Environment
None
Potential Workaround
None
has to be done before
Checklist
hideActivity
Show:
Done
Details
Assignee
Taras SpashchenkoTaras SpashchenkoReporter
Taras SpashchenkoTaras SpashchenkoPriority
TBDDevelopment Team
EurekaFix versions
TestRail: Cases
Open TestRail: CasesTestRail: Runs
Open TestRail: Runs
Details
Details
Assignee

Reporter

Priority
Development Team
Eureka
Fix versions
TestRail: Cases
Open TestRail: Cases
TestRail: Runs
Open TestRail: Runs
Created August 29, 2024 at 9:26 AM
Updated September 30, 2024 at 11:32 AM
Resolved September 2, 2024 at 6:53 AM
FOLIO software libraries and modules currently disable hostname verification by using a
NoopHostnameVerifier
, which poses a critical security vulnerability. This bypass allows SSL/TLS connections to proceed without verifying the service's identity, increasing the risk of server impersonation by an attacker. The affected libraries and modules do not log the bypass nor terminate the connection when a certificate verification fails, contravening the requirements for secure HTTPS communication as per RFC 9110.Action Required:
Replace the use of
NoopHostnameVerifier
with a secure hostname verification method that adheres to standard HTTPS certificate validation practices.Remove the suppression of the SonarQube warning "Server hostnames should be verified during SSL/TLS connections" and verify compliance through static code analysis tools.
Use
jdk.internal.httpclient.disableHostnameVerification
system property to disable hostname verification as it is implemented in Java's JDKHttpClient
,HostnameVerifier usage:
https://github.com/folio-org/applications-poc-tools/blob/master/folio-backend-common/src/main/java/org/folio/common/utils/FeignClientTlsUtils.java#L66
https://github.com/folio-org/applications-poc-tools/blob/master/folio-security/src/main/java/org/folio/security/integration/keycloak/utils/ClientBuildUtils.java#L39
https://github.com/folio-org/applications-poc-tools/blob/master/folio-backend-testing/src/main/java/org/folio/test/extensions/impl/KeycloakContainerExtension.java#L110