mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
Use HTTPS if supported
This commit is contained in:
parent
7a5310dea3
commit
a9a31c5eb0
4 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
curl http://ftp.gnu.org/gnu/gdb/gdb-7.10.tar.gz | tar xz
|
||||
curl https://ftp.gnu.org/gnu/gdb/gdb-7.10.tar.gz | tar xz
|
||||
cd gdb-7.10
|
||||
./configure --prefix=$(dirname $PWD) --with-python=python2 --enable-targets=all
|
||||
make -j $(nproc)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
mkdir bin
|
||||
wget -O msieve.tar.gz http://sourceforge.net/projects/msieve/files/latest/download
|
||||
wget -O msieve.tar.gz https://sourceforge.net/projects/msieve/files/latest/download
|
||||
tar -xf msieve.tar.gz
|
||||
|
||||
cd msieve-*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
curl http://www.cgsecurity.org/testdisk-7.0.linux26-x86_64.tar.bz2 | tar xj
|
||||
curl https://www.cgsecurity.org/testdisk-7.0.linux26-x86_64.tar.bz2 | tar xj
|
||||
|
||||
mkdir -p bin
|
||||
cd bin
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
mkdir yafu
|
||||
mkdir bin
|
||||
cd yafu
|
||||
wget "http://downloads.sourceforge.net/project/yafu/1.34/yafu-1.34.zip?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fyafu%2F&ts=1446080941&use_mirror=skylineservers" -O yafu.zip
|
||||
wget "https://downloads.sourceforge.net/project/yafu/1.34/yafu-1.34.zip?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fyafu%2F&ts=1446080941&use_mirror=skylineservers" -O yafu.zip
|
||||
unzip yafu.zip
|
||||
chmod 755 yafu
|
||||
mv yafu ../bin
|
||||
|
|
Loading…
Reference in a new issue