Skip to content

Commit 935d333

Browse files
committed
Use HTTPS for secure artifact downloads
The artifacts are hosted on S3, so there's an easily available HTTPS endpoint which protects users from MITM attacks.
1 parent 31f1545 commit 935d333

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ On the Raspberry PI or BeagleBone Black (after expanding the file system):
1111

1212
Alternatively, you can install using the .deb file:
1313

14-
curl -O http://adafruit-download.s3.amazonaws.com/adafruitwebide-0.3.12-Linux.deb
14+
curl -O https://adafruit-download.s3.amazonaws.com/adafruitwebide-0.3.12-Linux.deb
1515
sudo dpkg -i adafruitwebide-0.3.12-Linux.deb
1616
sudo apt-get -f install
1717

release/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
0.3.12
2-
http://adafruit-download.s3.amazonaws.com/webide-0.3.12-update.tar.gz
2+
https://adafruit-download.s3.amazonaws.com/webide-0.3.12-update.tar.gz
33
https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/release/changelog.txt

scripts/install-angstrom.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ echo "Attempting to force reload date and time from ntp server"
6868
/usr/bin/ntpdate -b -s -u pool.ntp.org
6969

7070
echo "**** Downloading the latest version of the WebIDE ****"
71-
curl -L http://adafruit-download.s3.amazonaws.com/webide-0.3.12.tar.gz | tar xzf -
71+
curl -L https://adafruit-download.s3.amazonaws.com/webide-0.3.12.tar.gz | tar xzf -
7272

7373
echo "**** Installing required libraries ****"
7474
echo "**** (redis-server git avahi-daemon i2c-tools python-smbus openssh-keygen) ****"

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ mkdir -p "$WEBIDE_HOME"
6565
cd "$WEBIDE_ROOT"
6666

6767
echo "**** Downloading the latest version of the WebIDE ****"
68-
curl -L http://adafruit-download.s3.amazonaws.com/webide-0.3.12.tar.gz | tar xzf -
68+
curl -L https://adafruit-download.s3.amazonaws.com/webide-0.3.12.tar.gz | tar xzf -
6969

7070
echo "**** Installing required libraries ****"
7171
echo "**** (redis-server git restartd libcap2-bin avahi-daemon i2c-tools python-smbus) ****"

0 commit comments

Comments
 (0)