-
Bug
-
Resolution: Duplicate
-
Blocker
-
None
-
8.12.5
-
None
-
None
In 2-way authentication mode client must provide to the server valid certificate. But Teiid accepts any certificate which client provides.
- expired
- untrusted
- signed by certificate of root CA which already expired
Teiid should reject such client's certificate and fail to establish connection.
On the client side, paths are set using teiid-specific properties:
System.setProperty("org.teiid.ssl.keyStore", clientKeystorePath); System.setProperty("org.teiid.ssl.keyStorePassword", "keystorepswd"); System.setProperty("org.teiid.ssl.keyAlias", "client"); System.setProperty("org.teiid.ssl.keyPassword", "keystorepswd"); System.setProperty("org.teiid.ssl.trustStore", clientTruststorePath); System.setProperty("org.teiid.ssl.trustStorePassword", "truststorepswd");