Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: csharp-security/check-server-ssl-sertificates

Language: C#

Severity: Error

Category: Security

CWE: 295

Description

Never bypass certificate validation. Certificates should be correctly checked to avoid attacks from untrusted sources.

Learn More

Non-Compliant Code Examples

using System.Net;
using System.Net.Http;

class MyClass {
public static void connect()
    {
        ServicePointManager.ServerCertificateValidationCallback +=
            (sender, certificate, chain, errors) => {
                return true;
            };

    }
}