WpOrg\Requests\Transport

Fsockopen::verify_certificate_from_context()publicWP 1.0

Verify the certificate against common name and subject alternative names

Unfortunately, PHP doesn't check the certificate against the alternative names, leading things like 'https://www.github.com/' to be invalid. Instead

Method of the class: Fsockopen{}

No Hooks.

Return

true|false.

Usage

$Fsockopen = new Fsockopen();
$Fsockopen->verify_certificate_from_context( $host, $context );
$host(string) (required)
Host name to verify against
$context(resource) (required)
Stream context

Fsockopen::verify_certificate_from_context() code WP 6.6.2

public function verify_certificate_from_context($host, $context) {
	$meta = stream_context_get_options($context);

	// If we don't have SSL options, then we couldn't make the connection at
	// all
	if (empty($meta) || empty($meta['ssl']) || empty($meta['ssl']['peer_certificate'])) {
		throw new Exception(rtrim($this->connect_error), 'ssl.connect_error');
	}

	$cert = openssl_x509_parse($meta['ssl']['peer_certificate']);

	return Ssl::verify_certificate($host, $cert);
}