diff options
author | Josh Roys <roysjosh@gmail.com> | 2022-07-23 11:23:16 -0400 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-09-10 15:24:22 +0200 |
commit | 90c6e3aedf167b0ae1baf376e7800a631681e69a (patch) | |
tree | e63fad68ee73899024f0dedeee0d8d690666347d /config | |
parent | f522c27385d6f94e5dbcc3e84968f0e38609ff1c (diff) | |
download | upstream-90c6e3aedf167b0ae1baf376e7800a631681e69a.tar.gz upstream-90c6e3aedf167b0ae1baf376e7800a631681e69a.tar.bz2 upstream-90c6e3aedf167b0ae1baf376e7800a631681e69a.zip |
scripts: always check certificates
Remove flags from wget and curl instructing them to ignore bad server
certificates. Although other mechanisms can protect against malicious
modifications of downloads, other vectors of attack may be available
to an adversary.
TLS certificate verification can be disabled by turning oof the
"Enable TLS certificate verification during package download" option
enabled by default in the "Global build settings" in "make menuconfig"
Signed-off-by: Josh Roys <roysjosh@gmail.com>
[ add additional info on how to disable this option ]
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-build.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/Config-build.in b/config/Config-build.in index 400bf15665..2eded2b288 100644 --- a/config/Config-build.in +++ b/config/Config-build.in @@ -58,6 +58,10 @@ menu "Global build settings" bool "Enable signature checking in opkg" default SIGNED_PACKAGES + config DOWNLOAD_CHECK_CERTIFICATE + bool "Enable TLS certificate verification during package download" + default y + comment "General build options" config TESTING_KERNEL |