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 efe1bcc commit 1d7af44Copy full SHA for 1d7af44
SECURITY.md
@@ -40,7 +40,7 @@ if (!is_website_url($url)) {
40
41
### Request data may refer to system files
42
43
-* Request data prefixed with the @ character may have special interpretation and read from system files.
+* Request data prefixed with the `@` character may have special interpretation and read from system files.
44
45
```bash
46
# Attacker.
@@ -63,7 +63,7 @@ $curl->post('http://www.anotherwebsite.com/', array(
63
```php
64
$curl = new Curl();
65
$curl->setOpt(CURLOPT_FOLLOWLOCATION, true); // DANGER!
66
-$curl->download('http://www.example.com/image.png', 'my_image.png');
+$curl->download('https://www.example.com/image.png', 'my_image.png');
67
```
68
69
### Keep SSL protections enabled.
0 commit comments