Skip to content
This repository was archived by the owner on Jun 27, 2018. It is now read-only.

Commit 952f22c

Browse files
author
Rob Walker
committed
Disabled CURL SSLv3
SSLv3 is not secure and rejected by some Tool Consumers. The PHP CURL manual recommends not setting this option.
1 parent 06b12f7 commit 952f22c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HTTPMessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function send()
132132
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
133133
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
134134
curl_setopt($ch, CURLOPT_HEADER, true);
135-
curl_setopt($ch, CURLOPT_SSLVERSION,3);
135+
//curl_setopt($ch, CURLOPT_SSLVERSION,3);
136136
$chResp = curl_exec($ch);
137137
$this->ok = $chResp !== false;
138138
if ($this->ok) {

0 commit comments

Comments
 (0)