From bab92c80a69787c57515a61d49f6c297f1663528 Mon Sep 17 00:00:00 2001 From: Zalan Blenessy Date: Sun, 26 May 2024 11:05:46 +0200 Subject: [PATCH] Hardened curl when installing contrast * Force >=TLS1.2 * Force HTTPS Inspired by the rustup.sh installation instructions: https://rustup.rs --- docs/docs/getting-started/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/getting-started/install.md b/docs/docs/getting-started/install.md index 2e2f5f4538..43aeb46d32 100644 --- a/docs/docs/getting-started/install.md +++ b/docs/docs/getting-started/install.md @@ -3,7 +3,7 @@ Download the Contrast CLI from the latest release: ```bash -curl -fLo contrast https://github.com/edgelesssys/contrast/releases/latest/download/contrast +curl --proto '=https' --tlsv1.2 -fLo contrast https://github.com/edgelesssys/contrast/releases/latest/download/contrast ``` After that, install the Contrast CLI in your PATH, e.g.: