We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f659d commit ffa9651Copy full SHA for ffa9651
SECURITY.md
@@ -72,11 +72,11 @@ $curl->setOpt(CURLOPT_FOLLOWLOCATION, true); // DANGER!
72
$curl->get('https://www.example.com/image.png');
73
```
74
75
-### Keep SSL protections enabled.
+### Keep SSL protections enabled
76
77
* Do not disable SSL protections.
78
79
```php
80
-curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); // DANGER!
81
-curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // DANGER!
+curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // DANGER!
+curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // DANGER!
82
0 commit comments