I'm using the SslStream class to authenticate client and server in a mutual authentication. Both certificates are signed by a CA.
The client certificate needs to be distributed to n clients so the server to authenticate the client certificate check the hash.
bool ValidateClientCertificate( Object^ sender, X509Certificate^ certificate, X509Chain^ chain, SslPolicyErrors sslPolicyErrors ) {
Console::Write("[+] Validating client certificate: ");
// check certificate hash
if( certificate->GetCertHashString()->Equals("cert hash") ) {
Console::Write( "oK\n" );
return true;
}
Console::Write(" ERROR\n");
Console::WriteLine("[-] Hash doesn't match");
// Do not allow this server to communicate with unauthenticated clients.
return false;
}
But if anyone create a certificate with that hash the server think that is valid.
How can i avoid this ? How i can check that the certificate is signed by the CA ?
Thanks.