Skip to content

Commit 248727a

Browse files
Al2Klimovjankara
authored andcommitted
udf: 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. 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 neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Alexander A. Klimov <[email protected]> Signed-off-by: Jan Kara <[email protected]>
1 parent 476fdf1 commit 248727a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Documentation/filesystems/udf.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ For the latest version and toolset see:
7272

7373
Documentation on UDF and ECMA 167 is available FREE from:
7474
- http://www.osta.org/
75-
- http://www.ecma-international.org/
75+
- https://www.ecma-international.org/

fs/udf/ecma_167.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ecma_167.h
33
*
44
* This file is based on ECMA-167 3rd edition (June 1997)
5-
* http://www.ecma.ch
5+
* https://www.ecma.ch
66
*
77
* Copyright (c) 2001-2002 Ben Fennema
88
* Copyright (c) 2017-2019 Pali Rohár <[email protected]>

fs/udf/super.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
* This code is based on version 2.00 of the UDF specification,
1212
* and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
1313
* http://www.osta.org/
14-
* http://www.ecma.ch/
15-
* http://www.iso.org/
14+
* https://www.ecma.ch/
15+
* https://www.iso.org/
1616
*
1717
* COPYRIGHT
1818
* This file is distributed under the terms of the GNU General Public

0 commit comments

Comments
 (0)