diff options
author | Alexander A. Klimov <grandmaster@al2klimov.de> | 2020-07-02 22:05:36 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.com> | 2020-07-03 14:07:00 +0200 |
commit | 8eda94bde4ff004a942ed95e6348de711b0e6da9 (patch) | |
tree | 29eb642aec4c913e37b97feaf0b03330671ac68a /lib | |
parent | 5c2fb57af0f42550eb718a3b0b445c81ec923895 (diff) | |
download | linux-8eda94bde4ff004a942ed95e6348de711b0e6da9.tar.gz linux-8eda94bde4ff004a942ed95e6348de711b0e6da9.tar.bz2 linux-8eda94bde4ff004a942ed95e6348de711b0e6da9.zip |
Replace HTTP links with HTTPS ones: vsprintf
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 <grandmaster@al2klimov.de>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Link: https://lore.kernel.org/r/20200702200536.13389-1-grandmaster@al2klimov.de
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 259e55895933..31a674dd2674 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -2134,7 +2134,7 @@ char *fwnode_string(char *buf, char *end, struct fwnode_handle *fwnode, * [4] or [6] and is able to print port [p], flowinfo [f], scope [s] * - '[Ii][4S][hnbl]' IPv4 addresses in host, network, big or little endian order * - 'I[6S]c' for IPv6 addresses printed as specified by - * http://tools.ietf.org/html/rfc5952 + * https://tools.ietf.org/html/rfc5952 * - 'E[achnops]' For an escaped buffer, where rules are defined by combination * of the following flags (see string_escape_mem() for the * details): |