From 86e6010a7af943e729964b7af6c4192deb8010b4 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Thu, 8 Nov 2018 11:15:25 +0000 Subject: get_maintainer: use 'https://' instead of 'git://' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When you clone the repository without previous commit history, 'git://' doesn't protect from man-in-the-middle attacks. HTTPS is more secure since the client verifies the server certificate. Reported-by: Jann Horn Reviewed-by: Daniel P. Berrangé Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé Signed-off-by: Stefan Hajnoczi Reviewed-by: Michael S. Tsirkin Reviewed-by: Cornelia Huck Reviewed-by: Alex Bennée Message-id: 20181108111531.30671-3-stefanha@redhat.com Signed-off-by: Peter Maydell --- scripts/get_maintainer.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/get_maintainer.pl') diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 43fb5f512f..71415e3c70 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -1376,7 +1376,7 @@ sub vcs_exists { warn("$P: No supported VCS found. Add --nogit to options?\n"); warn("Using a git repository produces better results.\n"); warn("Try latest git repository using:\n"); - warn("git clone git://git.qemu.org/qemu.git\n"); + warn("git clone https://git.qemu.org/git/qemu.git\n"); $printed_novcs = 1; } return 0; -- cgit v1.2.3