diff --git a/Auditoria/maskprocessor_updater b/Auditoria/maskprocessor_updater index cf0c83f..63d110a 100755 --- a/Auditoria/maskprocessor_updater +++ b/Auditoria/maskprocessor_updater @@ -2,7 +2,7 @@ # Script by www.seguridadwireless.net -SCRIPT_VERSION=20151101 +SCRIPT_VERSION=20151129 ############################################################ ## Funciones comunes. Su nombre empieza por f_ ## @@ -24,8 +24,8 @@ F_variables() { fi SRCNAM=maskprocessor echo -ne "\033]2;${PRGNAM}_updater\007" - WEB=https://github.com/jsteube/$SRCNAM - VERSION=`echo $(curl -s $WEB/releases|grep "tar.gz"|cut -d "/" -f5|cut -d "t" -f1|sed 's/.$//g'|sed 's/^.//g')` + WEB=https://github.com/hashcat/$SRCNAM + VERSION=`curl -s $WEB/releases|grep "tar.gz"|head -1|cut -d v -f3|cut -d t -f-1|sed 's/.$//g'` EXTENSION=tar.gz SOURCES=v$VERSION.$EXTENSION DOWNLOAD=$WEB/archive/$SOURCES diff --git a/Desarrollo/gtest_updater b/Desarrollo/gtest_updater index e1ddcd8..301e43d 100755 --- a/Desarrollo/gtest_updater +++ b/Desarrollo/gtest_updater @@ -2,7 +2,7 @@ # Script by www.seguridadwireless.net -SCRIPT_VERSION=20151024 +SCRIPT_VERSION=20151129 ############################################################ ## Funciones comunes. Su nombre empieza por f_ ## @@ -18,11 +18,11 @@ f_variables(){ F_variables() { PRGNAM=gtest echo -ne "\033]2;${PRGNAM}_updater\007" - WEB="https://code.google.com/p/googletest/downloads/list?can=1&q=&colspec=Filename+Summary+Uploaded+ReleaseDate+Size+DownloadCount" - SOURCES=$(curl -sk $WEB |grep "files/$PRGNAM" | grep -Po 'href="\K.*(?=" )' -m1 | rev | cut -d/ -f1|rev) - VERSION=$(echo "$SOURCES" | rev | cut -d\. -f2- | rev | cut -d- -f2-) + WEB=https://github.com/google/googletest/releases + VERSION=`curl -s $WEB|grep tar.gz|head -1|cut -d- -f2|cut -d t -f-1|sed 's/.$//g'` EXTENSION=zip - DOWNLOAD="https://googletest.googlecode.com/files/$SOURCES" + SOURCES=$PRGNAM-$VERSION.$EXTENSION + DOWNLOAD=http://googletest.googlecode.com/files/$SOURCES } # Descomprimimos el fichero descargado y compilamos diff --git a/Multimedia/mkvtoolnix_updater b/Multimedia/mkvtoolnix_updater index 4e17fb4..1bbe010 100755 --- a/Multimedia/mkvtoolnix_updater +++ b/Multimedia/mkvtoolnix_updater @@ -2,7 +2,7 @@ # Script by www.seguridadwireless.net -SCRIPT_VERSION=20151106 +SCRIPT_VERSION=20151129 CATEGORIA="Editores de video" ############################################################ @@ -19,7 +19,7 @@ f_variables(){ F_variables() { PRGNAM=mkvtoolnix echo -ne "\033]2;${PRGNAM}_updater\007" - WEB=https://www.bunkus.org/videotools/$PRGNAM/sources/ + WEB=https://mkvtoolnix.download/sources/ VERSION=`curl -s $WEB|grep .tar.xz|tail -1|cut -d- -f2|cut -d t -f-1|sed 's/.$//g'` EXTENSION=tar.xz SOURCES=$PRGNAM-$VERSION.$EXTENSION