Hola, instalé la versión de Nessus que viene en los repositorios de la distribución y cuando trato de actualizar la lista de plugin' me dice lo siguiente: linux:~ # nessus-update-plugins -vv | more + test -n '' + test -n '' + test -n '' + test -n '' + tar=-xf + test -z y + tar=-xvf ++ id + '[' -n '/usr/bin/wget -q -O -' -a -n /usr/bin/gzip ']' ++ pwd + cwd=/root + tmpdir= + test -z '' + tmpdir= + test -z '' + tmpdir=/tmp + mkdir /tmp/nessus-update-plugins-2200 + cd /tmp/nessus-update-plugins-2200 + /usr/bin/wget -q -O - http://www.nessus.org/nasl/all-2.0.tar.gz + test -f all-2.0.tar.gz + cat all-2.0.tar.gz + /usr/bin/gzip -cd + test 0 = 0 + cat all-2.0.tar + tar -xvf - ./ ./3com_switches.nasl ./404_path_disclosure.nasl ./4553.nasl ./4d_webstar_remote_buff_overflow.nasl ./4d_webstar_symb_link.nasl DESCOMPRIME EL CONTENIDO DE all-2.0.tar.gz + rm all-2.0.tar + test -f nessus_detect.nasl ################## ESTA ES LA PARTE INTERESANTE ################################# + echo 'Something went wrong when installing the plugins - uncompressing the plugins archive failed' Something went wrong when installing the plugins - uncompressing the plugins archive failed ################################################################################### + cd /root + rm -rf /tmp/nessus-update-plugins-2242 + exit 1 Veamos el script nessus-update-plugins para comprender el error: test -f all-2.0.tar.gz || { echo "Downloading http://www.nessus.org/nasl/all-2.0.tar.gz failed" cd "$cwd" rm -rf "$tmpdir/nessus-update-plugins-$$" exit 1 } cat all-2.0.tar.gz | $gzip -cd 2>/dev/null > all-2.0.tar test $? = 0 || { mv all-2.0.tar.gz all-2.0.tar # Some version of lynx gunzip data on the fly } cat all-2.0.tar | tar $tar - rm all-2.0.tar #################### AQUÍ ########################################## test -f nessus_detect.nasl || { echo "Something went wrong when installing the plugins - uncompressing $ cd "$cwd" rm -rf "$tmpdir/nessus-update-plugins-$$" exit 1 } #################################################################### ¿Si all-2.0.tar.gz no contiene nessus_detect.nasl ?. ERROR
participants (1)
-
Francisco Gutiérrez