lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Sun, 26 Jul 2020 12:39:45 +0200
From:   "Alexander A. Klimov" <grandmaster@...klimov.de>
To:     torvalds@...ux-foundation.org, Jonathan.Cameron@...wei.com,
        david@...hnology.com, tiwai@...e.de, linux-kernel@...r.kernel.org
Cc:     "Alexander A. Klimov" <grandmaster@...klimov.de>
Subject: [PATCH] drivers: Replace HTTP links with HTTPS ones

Rationale:
Reduces attack surface on kernel devs opening the links for MITM
as HTTPS traffic is much harder to manipulate.

Signed-off-by: Alexander A. Klimov <grandmaster@...klimov.de>
---
 Continuing my work started at 93431e0607e5 with unmaintained stuff according to:
 perl scripts/get_maintainer.pl --nogit{,-fallback} --nol

 See also: git log --oneline '--author=Alexander A. Klimov <grandmaster@...klimov.de>' v5.7..master
 (Actually letting a shell for loop submit all this stuff for me.)

 If there are any URLs to be removed completely
 or at least not (just) 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

 If you apply the patch, please let me know.


 drivers/bus/omap-ocp2scp.c | 6 +++---
 drivers/bus/omap_l3_noc.c  | 2 +-
 drivers/bus/omap_l3_noc.h  | 2 +-
 drivers/bus/ti-pwmss.c     | 2 +-
 drivers/firmware/edd.c     | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/bus/omap-ocp2scp.c b/drivers/bus/omap-ocp2scp.c
index e02d0656242b..1475ceaa7add 100644
--- a/drivers/bus/omap-ocp2scp.c
+++ b/drivers/bus/omap-ocp2scp.c
@@ -2,7 +2,7 @@
 /*
  * omap-ocp2scp.c - transform ocp interface protocol to scp protocol
  *
- * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com
+ * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com
  * Author: Kishon Vijay Abraham I <kishon@...com>
  */
 
@@ -47,9 +47,9 @@ static int omap_ocp2scp_probe(struct platform_device *pdev)
 	/*
 	 * As per AM572x TRM: http://www.ti.com/lit/ug/spruhz6/spruhz6.pdf
 	 * under section 26.3.2.2, table 26-26 OCP2SCP TIMING Caution;
-	 * As per OMAP4430 TRM: http://www.ti.com/lit/ug/swpu231ap/swpu231ap.pdf
+	 * As per OMAP4430 TRM: https://www.ti.com/lit/ug/swpu231ap/swpu231ap.pdf
 	 * under section 23.12.6.2.2 , Table 23-1213 OCP2SCP TIMING Caution;
-	 * As per OMAP4460 TRM: http://www.ti.com/lit/ug/swpu235ab/swpu235ab.pdf
+	 * As per OMAP4460 TRM: https://www.ti.com/lit/ug/swpu235ab/swpu235ab.pdf
 	 * under section 23.12.6.2.2, Table 23-1213 OCP2SCP TIMING Caution;
 	 * As per OMAP543x TRM http://www.ti.com/lit/pdf/swpu249
 	 * under section 27.3.2.2, Table 27-27 OCP2SCP TIMING Caution;
diff --git a/drivers/bus/omap_l3_noc.c b/drivers/bus/omap_l3_noc.c
index b040447575ad..69e9341f402d 100644
--- a/drivers/bus/omap_l3_noc.c
+++ b/drivers/bus/omap_l3_noc.c
@@ -1,7 +1,7 @@
 /*
  * OMAP L3 Interconnect error handling driver
  *
- * Copyright (C) 2011-2015 Texas Instruments Incorporated - http://www.ti.com/
+ * Copyright (C) 2011-2015 Texas Instruments Incorporated - https://www.ti.com/
  *	Santosh Shilimkar <santosh.shilimkar@...com>
  *	Sricharan <r.sricharan@...com>
  *
diff --git a/drivers/bus/omap_l3_noc.h b/drivers/bus/omap_l3_noc.h
index 73431f81da28..efce07239b1f 100644
--- a/drivers/bus/omap_l3_noc.h
+++ b/drivers/bus/omap_l3_noc.h
@@ -1,7 +1,7 @@
 /*
  * OMAP L3 Interconnect  error handling driver header
  *
- * Copyright (C) 2011-2015 Texas Instruments Incorporated - http://www.ti.com/
+ * Copyright (C) 2011-2015 Texas Instruments Incorporated - https://www.ti.com/
  *	Santosh Shilimkar <santosh.shilimkar@...com>
  *	sricharan <r.sricharan@...com>
  *
diff --git a/drivers/bus/ti-pwmss.c b/drivers/bus/ti-pwmss.c
index e9c26c94251b..ff3a2dab3d1e 100644
--- a/drivers/bus/ti-pwmss.c
+++ b/drivers/bus/ti-pwmss.c
@@ -2,7 +2,7 @@
 /*
  * TI PWM Subsystem driver
  *
- * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
+ * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
  */
 
 #include <linux/module.h>
diff --git a/drivers/firmware/edd.c b/drivers/firmware/edd.c
index 14d0970a7198..d1cc8f5bde89 100644
--- a/drivers/firmware/edd.c
+++ b/drivers/firmware/edd.c
@@ -16,7 +16,7 @@
  * made in setup.S, copied to safe structures in setup.c,
  * and presents it in sysfs.
  *
- * Please see http://linux.dell.com/edd/results.html for
+ * Please see https://linux.dell.com/edd/results.html for
  * the list of BIOSs which have been reported to implement EDD.
  */
 
-- 
2.27.0

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ