Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp346400ybt; Mon, 6 Jul 2020 10:42:13 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy+0jwiT/yosNbhQAjDN1aNsSwRb7fqly6OW5uVJ8Mw6JX++UPIUwXpc3awY9SLy5CIl7xq X-Received: by 2002:a17:906:d217:: with SMTP id w23mr32874118ejz.292.1594057333820; Mon, 06 Jul 2020 10:42:13 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1594057333; cv=none; d=google.com; s=arc-20160816; b=hXy/KnITjFPG3gS/UGvyO9F6mSg3iZifIo6VO0+HMmEzxLlK3gp85AT2kmeLQpkT0C iWciI66BsLGuzQAbcrxPINZVDxbYWEgRnpdwcSk2Fc+xcrhjCsoTRR3AXXUSY024xrpr EbCn989uHEbsTQQFHLWit1a6+ltWWgZSWYIWqv4l1CNijaevoDQNgRqo3xOsbH2SuiQi L1wQwUqkBRfWwNNNMZgVZ6kZkfL3tCfFxg7FzMyRVx8FeAX8iZjC5cOV1Ec/XK6kvNdD IxiCyZWzQqBFkKpCxMiavBqdR4z4ZxkKpGWwRK/cz0cHNqT52VWiYtMIn6h4vM5oss1s Z9Kw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=WYR3mlU8iJVWQTf60TYqJ51AEauh28VM8fhaPXdsoQ8=; b=pAe7IM7QNUrbPu9y7P3I8EymPqgzz6g1mBlMFbB5k5DffvUBXrpmvqBfm/9tznmzq8 B4cUzTF70420vPcDZID4LtZUAeVQECWqSJqLwEG1jwMi03E5MQGtr8UUFKF+J83Q3Oac braFDkuXTDB6yzKGEP5CCobM9GJvN2a4c1M1HXfCfgG5F7xqt1rL9/5Us6f6V/gXxBO8 5uXZoCV+ZrGw5w8QX/CbQNFo+S7sgYpFKBxxxJUlfxfm8RGkM7v4+Y25ag5ExW/a3YYD P8m1XkLt6yE9+ExJ9h4SEUxnXRho76UgtcpGVRsPyjJ/ztX/bLNIvgjpjgUv9JuwaeV9 ipAg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id y19si13663364ejm.324.2020.07.06.10.41.51; Mon, 06 Jul 2020 10:42:13 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729749AbgGFRjN (ORCPT + 99 others); Mon, 6 Jul 2020 13:39:13 -0400 Received: from smtp.al2klimov.de ([78.46.175.9]:45898 "EHLO smtp.al2klimov.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729636AbgGFRjM (ORCPT ); Mon, 6 Jul 2020 13:39:12 -0400 Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by smtp.al2klimov.de (Postfix) with ESMTPA id DC31BBC11E; Mon, 6 Jul 2020 17:39:10 +0000 (UTC) From: "Alexander A. Klimov" To: al@alarsen.net, linux-kernel@vger.kernel.org Cc: "Alexander A. Klimov" Subject: [PATCH] Replace HTTP links with HTTPS ones: QNX4 Date: Mon, 6 Jul 2020 19:39:05 +0200 Message-Id: <20200706173905.19376-1-grandmaster@al2klimov.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spamd-Bar: +++++ X-Spam-Level: ***** Authentication-Results: smtp.al2klimov.de; auth=pass smtp.auth=aklimov@al2klimov.de smtp.mailfrom=grandmaster@al2klimov.de Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Rationale: Reduces attack surface on kernel devs opening the links for MITM as HTTPS traffic is much harder to manipulate. Deterministic algorithm: For each file: If not .svg: For each line: If doesn't contain `\bxmlns\b`: For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. Signed-off-by: Alexander A. Klimov --- Continuing my work started at 93431e0607e5. If there are any URLs to be removed completely or at least not HTTPSified: Just clearly say so and I'll *undo my change*. See also https://lkml.org/lkml/2020/6/27/64 If there are any valid, but yet not changed URLs: See https://lkml.org/lkml/2020/6/26/837 fs/qnx4/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/qnx4/Kconfig b/fs/qnx4/Kconfig index 45b5b98376c4..6ba0e5a1303f 100644 --- a/fs/qnx4/Kconfig +++ b/fs/qnx4/Kconfig @@ -5,7 +5,7 @@ config QNX4FS_FS help This is the file system used by the real-time operating systems QNX 4 and QNX 6 (the latter is also called QNX RTP). - Further information is available at . + Further information is available at . Say Y if you intend to mount QNX hard disks or floppies. To compile this file system support as a module, choose M here: the -- 2.27.0