From patchwork Sun Dec 10 08:08:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Peter_M=C3=BCller?= X-Patchwork-Id: 1583 Return-Path: Received: from mail01.ipfire.org (unknown [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 1176E615DD for ; Sat, 9 Dec 2017 22:08:29 +0100 (CET) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 9511B3560; Sat, 9 Dec 2017 22:08:28 +0100 (CET) Received: from mx.link38.eu (mx.link38.eu [188.68.43.123]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx.link38.eu", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 7C5D7353E for ; Sat, 9 Dec 2017 22:08:25 +0100 (CET) X-Virus-Scanned: ClamAV at mx.link38.eu Received: from mx-fra.brokers.link38.eu (mx-fra.brokers.link38.eu [10.141.75.13]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx.link38.eu (Postfix) with ESMTPS id B5F0B40123 for ; Sat, 9 Dec 2017 22:08:18 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx-fra.brokers.link38.eu (Postfix) with ESMTPSA id 236FF9F127 for ; Sat, 9 Dec 2017 22:08:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=link38.eu; s=201711; t=1512853698; x=1575925698; bh=53bym0XU2nIYLcA2Ozx0Xcdzs4y6eJgNC2Pb/arAjPo=; h=Date:From:To:Subject:Message-ID:Content-Type:From:To:Subject:Date: Cc; b=Cc9PNxoIJULF584XPlTgRlu4eBtEb7F/7qxNPDR+zN5sJbxv/p6hQSEFuR8f8MSqT Kl+ywzIKMnSRxpfg6MefCd+72PdnMuxXneHJEwhvrj4StOXxhRJdxnVDQvZeCe7E6F IgEl5oDiWSdHHYOuSMCiTbG0tISS829BiyQibAWGbv2X7YVi8GCdxB7ZVCn0xcRVWi 1pIUF28+jvitnzI8Df1UloJlvsvM0IXoaecH7Gg6AAENjnrHBluHokQZ4BPv171ZsM TVqsYbvNvOTi4hfCB0zd2elqn3CyGrTGd7RjzMKrkqky+tO9BdgtNvB2zTl78/W/NE ds/k9BmVqNkVw== Date: Sat, 9 Dec 2017 22:08:16 +0100 From: Peter =?utf-8?q?M=C3=BCller?= To: "development@lists.ipfire.org" Subject: [PATCH] submit fireinfo profile via HTTPS Message-ID: <20171209220816.2f7976b9.peter.mueller@link38.eu> Organization: Link38 MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Since HTTPS is now available for fireinfo.ipfire.org, clients should submit their profiles with transport encryption. Fixes #11529. Signed-off-by: Peter Müller --- src/sendprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sendprofile b/src/sendprofile index da480ce..b836567 100644 --- a/src/sendprofile +++ b/src/sendprofile @@ -44,7 +44,7 @@ log.addHandler(logging.StreamHandler(sys.stderr)) for handler in log.handlers: handler.setLevel(log_level) -PROFILE_URL = "http://fireinfo.ipfire.org/send/%(public_id)s" +PROFILE_URL = "https://fireinfo.ipfire.org/send/%(public_id)s" def get_upstream_proxy(): if not os.path.exists(PROXY_SETTINGS):