Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Remove -k/--insecure option from curl installer (#8719)
Browse files Browse the repository at this point in the history
Piping `curl` to `bash` while **disabling** certificate verification can lead to security problems.
  • Loading branch information
vrde authored and 5chdn committed May 31, 2018
1 parent 9053c0d commit 581e510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ first.
## Simple one-line installer for Mac and Ubuntu
```bash
bash <(curl https://get.parity.io -Lk)
bash <(curl https://get.parity.io -L)
```
The one-line installer always defaults to the latest beta release. To install a stable release, run:
```bash
bash <(curl https://get.parity.io -Lk) -r stable
bash <(curl https://get.parity.io -L) -r stable
```
## Start Parity
Expand Down

0 comments on commit 581e510

Please sign in to comment.