--- openvas-client-2.0.1.orig/config.guess +++ openvas-client-2.0.1/config.guess @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2006-07-02' +timestamp='2008-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -56,8 +56,8 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -161,6 +161,7 @@ arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched @@ -329,7 +330,7 @@ sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; - i86pc:SunOS:5.*:*) + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) @@ -531,7 +532,7 @@ echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[45]) + *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -780,7 +781,7 @@ i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; - i*:MINGW*:*) + *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) @@ -790,12 +791,18 @@ i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - x86:Interix*:[3456]*) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - EM64T:Interix*:[3456]*) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; @@ -829,7 +836,14 @@ echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu @@ -950,6 +964,9 @@ x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent @@ -1208,6 +1225,15 @@ SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; @@ -1458,9 +1484,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD If the version you run ($0) is already up to date, please send the following data and any information you think might be --- openvas-client-2.0.1.orig/config.sub +++ openvas-client-2.0.1/config.sub @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2006-07-02' +timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -72,8 +72,8 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -245,12 +245,12 @@ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ + | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | mcore \ + | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ @@ -276,6 +276,7 @@ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ + | score \ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ @@ -284,7 +285,7 @@ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; @@ -323,7 +324,7 @@ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ @@ -367,11 +368,15 @@ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -442,6 +447,14 @@ basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; c90) basic_machine=c90-cray os=-unicos @@ -474,8 +487,8 @@ basic_machine=craynv-cray os=-unicosmp ;; - cr16c) - basic_machine=cr16c-unknown + cr16) + basic_machine=cr16-unknown os=-elf ;; crds | unos) @@ -667,6 +680,14 @@ basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -682,6 +703,10 @@ basic_machine=i386-pc os=-mingw32 ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; miniframe) basic_machine=m68000-convergent ;; @@ -808,6 +833,14 @@ basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; @@ -909,6 +942,10 @@ sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; sei) basic_machine=mips-sei os=-seiux @@ -920,6 +957,9 @@ basic_machine=sh-hitachi os=-hms ;; + sh5el) + basic_machine=sh5le-unknown + ;; sh64) basic_machine=sh64-unknown ;; @@ -1009,6 +1049,10 @@ basic_machine=tic6x-unknown os=-coff ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -1214,7 +1258,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1366,6 +1410,9 @@ # system, and we'll never get to this point. case $basic_machine in + score-*) + os=-elf + ;; spu-*) os=-elf ;; @@ -1406,6 +1453,9 @@ m68*-cisco) os=-aout ;; + mep-*) + os=-elf + ;; mips*-cisco) os=-elf ;; --- openvas-client-2.0.1.orig/nessus/Makefile +++ openvas-client-2.0.1/nessus/Makefile @@ -57,6 +57,10 @@ prefs_kb.o \ listnotebook.o \ read_target_file.o \ + gdchart0.94b/gdc.o \ + gdchart0.94b/price_conv.o \ + gdchart0.94b/gdc_pie.o \ + gdchart0.94b/gdchart.o \ regex.o \ filter.o \ dirutils.o \ --- openvas-client-2.0.1.orig/po/OpenVAS-Client.pot +++ openvas-client-2.0.1/po/OpenVAS-Client.pot @@ -0,0 +1,2107 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Tenable Network Security, Intevation GmbH and others +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: openvas-devel@wald.intevation.org\n" +"POT-Creation-Date: 2008-04-06 00:23+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/gui/about_dlg.c:113 +msgid "About OpenVAS-Client" +msgstr "" + +#: src/gui/about_dlg.c:139 +msgid "OpenVAS" +msgstr "" + +#: src/gui/about_dlg.c:139 +msgid "http://www.openvas.org/" +msgstr "" + +#: src/gui/about_dlg.c:141 +#, c-format +msgid "" +"OpenVAS-Client %s\n" +"NessusClient origin: Copyright 1998-2007 Renaud Deraison\n" +"New code since OpenVAS-Client: Copyright 2007 Intevation GmbH\n" +"License: GNU GPL v2" +msgstr "" + +#: src/gui/about_dlg.c:148 +msgid "" +"Authors:\n" +" Renaud Deraison\n" +" Thomas Arendsen Hein\n" +" Jan-Oliver Wagner\n" +" Bernhard Herzog\n" +" Michel Arboi (SSL Support)\n" +" Bruce Verderaime (Pie/Charts)" +msgstr "" + +#: src/gui/about_dlg.c:169 +msgid "Supporters:" +msgstr "" + +#: src/gui/about_dlg.c:172 +msgid "Intevation GmbH" +msgstr "" + +#: src/gui/about_dlg.c:172 +msgid "http://www.intevation.net/" +msgstr "" + +#: src/gui/about_dlg.c:180 +msgid "Federal Office for Information Security" +msgstr "" + +#: src/gui/about_dlg.c:181 +msgid "http://www.bsi.de/english/" +msgstr "" + +#: src/gui/error_dlg.c:67 src/gui/error_dlg.c:176 +#, c-format +msgid "Info: " +msgstr "" + +#: src/gui/error_dlg.c:70 src/gui/error_dlg.c:179 +#, c-format +msgid "Warning: " +msgstr "" + +#: src/gui/error_dlg.c:73 src/gui/error_dlg.c:182 +#, c-format +msgid "Error: " +msgstr "" + +#: src/gui/error_dlg.c:79 +#, c-format +msgid "Press to continue ...\n" +msgstr "" + +#: src/gui/slad_install.c:63 +msgid "Could not check SLAD installer." +msgstr "" + +#: src/gui/slad_install.c:78 +msgid "Could not execute SLAD installer." +msgstr "" + +#: src/gui/slad_install.c:87 +msgid "" +"fork error. could not start SLAD install. This is a serious operating system " +"error. Maybe a reboot will fix this." +msgstr "" + +#: nessus/comm.c:90 +#, c-format +msgid "Receiving plugins: %d" +msgstr "" + +#: nessus/comm.c:95 +#, c-format +msgid "Receiving dependencies: %d" +msgstr "" + +#: nessus/comm.c:383 +#, c-format +msgid "Error : we received a preference (%s) for the plugin %s\n" +msgstr "" + +#: nessus/comm.c:386 +#, c-format +msgid "but apparently the server has not loaded it\n" +msgstr "" + +#: nessus/comm.c:752 +#, c-format +msgid "Can't open %s: %s" +msgstr "" + +#: nessus/comm.c:776 +#, c-format +msgid "Error reading from %s: %s" +msgstr "" + +#: nessus/comm.c:905 nessus/comm.c:1248 +msgid "The daemon shut down the communication" +msgstr "" + +#: nessus/comm.c:930 +msgid "Error processing plugin information from the server" +msgstr "" + +#: nessus/comm.c:936 +msgid "Invalid SEND_PLUGINS_MD5 response from server" +msgstr "" + +#: nessus/comm.c:1097 +msgid "Invalid PLUGIN_INFO response from server" +msgstr "" + +#: nessus/comm.c:1196 +msgid "Invalid PLUGINS_MD5 information sent from server" +msgstr "" + +#: nessus/comm.c:1229 +msgid "Error while updating the cached plugin information" +msgstr "" + +#: nessus/context.c:228 +msgid "context_remove_child detected existing children." +msgstr "" + +#: nessus/context.c:368 nessus/prefs_dialog/prefs_scope_tree.c:273 +msgid "context_rename() called with illegal type" +msgstr "" + +#: nessus/context.c:385 nessus/context.c:416 +#, c-format +msgid "Directory %s couldn't be renamed to %s: %s." +msgstr "" + +#: nessus/context.c:433 +#, c-format +msgid "Can't move \"%s\" to \"%s\"." +msgstr "" + +#: nessus/context.c:456 nessus/context.c:495 +#, c-format +msgid "Directory %s couldn't be created: %s." +msgstr "" + +#: nessus/context.c:481 nessus/prefs_dialog/prefs_scan_assistant.c:263 +msgid "unnamed task" +msgstr "" + +#: nessus/context.c:484 nessus/prefs_dialog/prefs_scan_assistant.c:280 +msgid "unnamed scope" +msgstr "" + +#: nessus/context.c:487 +msgid "context_new(): No name provided for context" +msgstr "" + +#: nessus/context.c:532 +#, c-format +msgid "File %s couldn't be deleted: %s." +msgstr "" + +#: nessus/context.c:538 +#, c-format +msgid "Directory %s couldn't be deleted: %s." +msgstr "" + +#: nessus/context.c:559 +msgid "context_delete() deleted the current context." +msgstr "" + +#: nessus/filter.c:67 nessus/filter.c:80 +msgid "Filter plugins..." +msgstr "" + +#: nessus/filter.c:92 +msgid "Pattern:" +msgstr "" + +#: nessus/filter.c:102 +msgid "Filter on:" +msgstr "" + +#: nessus/filter.c:110 nessus/prefs_dialog/prefs_dialog_scan_opt.c:257 +#: nessus/prefs_dialog/prefs_plugins_tree.c:441 +#: nessus/prefs_dialog/prefs_scope_tree.c:777 +msgid "Name" +msgstr "" + +#: nessus/filter.c:116 nessus/pdf_output.c:911 +msgid "Description" +msgstr "" + +#: nessus/filter.c:122 nessus/pdf_output.c:763 nessus/pdf_output.c:900 +msgid "Summary" +msgstr "" + +#: nessus/filter.c:128 +msgid "Author" +msgstr "" + +#: nessus/filter.c:134 +msgid "ID number" +msgstr "" + +#: nessus/filter.c:140 nessus/pdf_output.c:901 +msgid "Category" +msgstr "" + +#: nessus/filter.c:146 nessus/pdf_output.c:904 +msgid "CVE" +msgstr "" + +#: nessus/filter.c:152 nessus/pdf_output.c:905 +msgid "BID" +msgstr "" + +#: nessus/filter.c:159 +msgid "XREF" +msgstr "" + +#: nessus/filter.c:238 +#, c-format +msgid "Enter a new filter : " +msgstr "" + +#: nessus/filter.c:259 +msgid "Invalid regular expression" +msgstr "" + +#: nessus/monitor_dialog.c:84 +#, c-format +msgid "is_server_present: fd(%d) out of range\n" +msgstr "" + +#: nessus/monitor_dialog.c:132 +#, c-format +msgid "idle_server: soc(%d) out of range\n" +msgstr "" + +#: nessus/monitor_dialog.c:221 +#, c-format +msgid "Scanning network from %s" +msgstr "" + +#: nessus/monitor_dialog.c:222 +msgid "some host" +msgstr "" + +#: nessus/monitor_dialog.c:260 +msgid "Hostname" +msgstr "" + +#: nessus/monitor_dialog.c:266 +msgid "Portscan" +msgstr "" + +#: nessus/monitor_dialog.c:272 +msgid "Checks" +msgstr "" + +#: nessus/monitor_dialog.c:279 nessus/monitor_dialog.c:619 +msgid "Stop" +msgstr "" + +#: nessus/monitor_dialog.c:308 +msgid "Stop the whole test" +msgstr "" + +#: nessus/monitor_dialog.c:388 nessus/monitor_dialog.c:409 +#, c-format +msgid "Error ! Null hostname in the list\n" +msgstr "" + +#: nessus/monitor_dialog.c:581 +msgid "Portscan:" +msgstr "" + +#: nessus/monitor_dialog.c:585 +msgid "Checks:" +msgstr "" + +#: nessus/nessus.c:393 +msgid "Host not found!" +msgstr "" + +#: nessus/nessus.c:396 +#, c-format +msgid "Could not open a connection to %s\n" +msgstr "" + +#: nessus/nessus.c:415 +#, c-format +msgid "Could not connect to %s - %s\n" +msgstr "" + +#: nessus/nessus.c:444 +msgid "" +"Could not initialize the OpenSSL library !\n" +"Please launch nessusclient-mkrand(1) first !" +msgstr "" + +#: nessus/nessus.c:460 +#, c-format +msgid "" +"Unknown SSL version \"%s\"\n" +"Using default: %s" +msgstr "" + +#: nessus/nessus.c:543 +#, c-format +msgid "paranoia_level=%d but \"trusted_ca\" not set" +msgstr "" + +#: nessus/nessus.c:558 +#, c-format +msgid "" +"Error while setting the trusted CA: %s\n" +"SSL connections are likely to fail." +msgstr "" + +#: nessus/nessus.c:603 +msgid "SSL error: cannot get server certificate" +msgstr "" + +#: nessus/nessus.c:615 +msgid "Invalid server certificate" +msgstr "" + +#: nessus/nessus.c:619 +msgid "Could not save server certificate" +msgstr "" + +#: nessus/nessus.c:630 nessus/nessus.c:639 +msgid "Could not register the connection" +msgstr "" + +#: nessus/nessus.c:656 +msgid "" +"Remote host is not using the good version of the Nessus communication " +"protocol (1.2) or is tcpwrapped" +msgstr "" + +#: nessus/nessus.c:669 +msgid "Login failed" +msgstr "" + +#: nessus/nessus.c:700 +#, c-format +msgid "" +"\n" +"Common options :\n" +" %s [-vnh] [-c .rcfile] [-V] [-T ]" +msgstr "" + +#: nessus/nessus.c:701 +#, c-format +msgid "" +"\n" +"Batch-mode scan:\n" +" %s -q [-pPS] " +msgstr "" + +#: nessus/nessus.c:702 +#, c-format +msgid "" +"\n" +"List sessions :\n" +" %s -s -q " +msgstr "" + +#: nessus/nessus.c:703 +#, c-format +msgid "" +"\n" +"Restore session:\n" +" %s -R -q " +msgstr "" + +#: nessus/nessus.c:705 +#, c-format +msgid "" +"\n" +"Batch-mode scan:\n" +" %s -q [-pPS] " +msgstr "" + +#: nessus/nessus.c:706 +#, c-format +msgid "" +"\n" +"List sessions :\n" +" %s -s -q " +msgstr "" + +#: nessus/nessus.c:707 +#, c-format +msgid "" +"\n" +"Restore session:\n" +" %s -R -q " +msgstr "" + +#: nessus/nessus.c:709 +#, c-format +msgid "" +"\n" +"Report conversion :\n" +" %s -i in.nbe -o out.[html|xml|nbe]\n" +"\n" +msgstr "" + +#: nessus/nessus.c:710 +#, c-format +msgid "General options :\n" +msgstr "" + +#: nessus/nessus.c:711 +#, c-format +msgid "\t-v : shows version number\n" +msgstr "" + +#: nessus/nessus.c:712 +#, c-format +msgid "\t-h : shows this help\n" +msgstr "" + +#: nessus/nessus.c:713 +#, c-format +msgid "\t-n : No pixmaps\n" +msgstr "" + +#: nessus/nessus.c:714 +#, c-format +msgid "\t-T : Output format: 'nbe', 'html', 'html_graph', 'text', 'xml',\n" +msgstr "" + +#: nessus/nessus.c:716 +#, c-format +msgid "" +"\t-V : make the batch mode display status messages\n" +"\t to the screen.\n" +msgstr "" + +#: nessus/nessus.c:718 +#, c-format +msgid "" +"\t-x : override SSL \"paranoia\" question preventing OpenVAS-Client from\n" +"\t checking certificates.\n" +"\n" +msgstr "" + +#: nessus/nessus.c:721 +#, c-format +msgid "The batch mode (-q) arguments are :\n" +msgstr "" + +#: nessus/nessus.c:723 +#, c-format +msgid "\thost : openvasd host\n" +msgstr "" + +#: nessus/nessus.c:724 +#, c-format +msgid "\tport : openvasd host port\n" +msgstr "" + +#: nessus/nessus.c:726 +#, c-format +msgid "\tuser : user name\n" +msgstr "" + +#: nessus/nessus.c:727 +#, c-format +msgid "\tpass : password\n" +msgstr "" + +#: nessus/nessus.c:728 +#, c-format +msgid "\ttargets : file containing the list of targets\n" +msgstr "" + +#: nessus/nessus.c:729 +#, c-format +msgid "" +"\tresult : name of the file where \n" +"\t\t OpenVAS-Client will store the results\n" +msgstr "" + +#: nessus/nessus.c:730 +#, c-format +msgid "\t-p : obtain list of plugins installed on the server.\n" +msgstr "" + +#: nessus/nessus.c:731 +#, c-format +msgid "\t-P : obtain list of server and plugin preferences.\n" +msgstr "" + +#: nessus/nessus.c:732 +#, c-format +msgid "\t-S : issue SQL output for -p and -P (experimental).\n" +msgstr "" + +#: nessus/nessus.c:880 +#, c-format +msgid "\tSSL used for client - server communication\n" +msgstr "" + +#: nessus/nessus.c:882 +#, c-format +msgid "\tclient - server communication is done in PLAIN TEXT\n" +msgstr "" + +#: nessus/nessus.c:971 +#, c-format +msgid "Unsupported report type '%s'\n" +msgstr "" + +#: nessus/nessus.c:979 +#, c-format +msgid "Could not import '%s' - is it a .nbe file?\n" +msgstr "" + +#: nessus/nessus.c:1002 +#, c-format +msgid "list-sessions requires %s\n" +msgstr "" + +#: nessus/nessus.c:1008 +#, c-format +msgid "restore-session requires -q %s result\n" +msgstr "" + +#: nessus/nessus.c:1014 +#, c-format +msgid "--restore-session and --list-sessions are mutually exclusive\n" +msgstr "" + +#: nessus/nessus.c:1052 +#, c-format +msgid "Verbose mode can only be used in batch mode\n" +msgstr "" + +#: nessus/nessus.c:1086 +msgid "list-sessions only requires " +msgstr "" + +#: nessus/nessus.c:1093 +msgid "restore-session only requires " +msgstr "" + +#: nessus/nessus.c:1131 nessus/nessus.c:1145 +#, c-format +msgid "Could not connect to openvasd\n" +msgstr "" + +#: nessus/nessus.c:1171 nessus/nessus.c:1177 +#, c-format +msgid "Missing parameter\n" +msgstr "" + +#: nessus/nessus.c:1208 +#, c-format +msgid "A new openvasrc file has been saved\n" +msgstr "" + +#: nessus/nessus.c:1251 +#, c-format +msgid "" +"\n" +"Ooops ...\n" +" This nessus version has no gui support. You need to give nessus the\n" +" arguments SERVER PORT LOGIN TRG RESULT as explained in more detail\n" +" using the --help option.\n" +msgstr "" + +#: nessus/pdf_output.c:381 +msgid "Could not fork (out of memory?)" +msgstr "" + +#: nessus/pdf_output.c:463 +msgid "" +"PDF report export failed!\n" +"Maybe HTMLDoc (required for PDF export) is not installed or in search path." +msgstr "" + +#: nessus/pdf_output.c:465 +#, c-format +msgid "PDF report export failed! (htmldoc exit code: %d)" +msgstr "" + +#: nessus/pdf_output.c:496 +msgid "Could not create this file !" +msgstr "" + +#: nessus/pdf_output.c:510 +msgid "Reports per Host" +msgstr "" + +#: nessus/pdf_output.c:530 +#, c-format +msgid "Scan of this host started at: %s
\n" +msgstr "" + +#: nessus/pdf_output.c:532 +#, c-format +msgid "Scan of this host finished at: %s
\n" +msgstr "" + +#: nessus/pdf_output.c:542 +msgid "Service (Port)" +msgstr "" + +#: nessus/pdf_output.c:545 +msgid "Issue regarding port" +msgstr "" + +#: nessus/pdf_output.c:569 +msgid "Security hole found" +msgstr "" + +#: nessus/pdf_output.c:574 nessus/pdf_output.c:812 +msgid "Security warning(s) found" +msgstr "" + +#: nessus/pdf_output.c:579 +msgid "Security notes found" +msgstr "" + +#: nessus/pdf_output.c:588 nessus/pdf_output.c:597 +msgid "No Information" +msgstr "" + +#: nessus/pdf_output.c:606 +msgid "[ return to summary ]" +msgstr "" + +#: nessus/pdf_output.c:610 +#, c-format +msgid "Security Issues and Fixes - Host %s" +msgstr "" + +#: nessus/pdf_output.c:646 +msgid "Vulnerability" +msgstr "" + +#: nessus/pdf_output.c:671 nessus/prefs_dialog/prefs_plugins_tree.c:448 +msgid "Warning" +msgstr "" + +#: nessus/pdf_output.c:698 +msgid "Informational" +msgstr "" + +#: nessus/pdf_output.c:712 +#, c-format +msgid "[ return to %s ]" +msgstr "" + +#: nessus/pdf_output.c:730 +msgid "" +"This file was generated by OpenVAS, " +"the free security scanner." +msgstr "" + +#: nessus/pdf_output.c:752 +msgid "OpenVAS Scan Report" +msgstr "" + +#: nessus/pdf_output.c:767 +msgid "" +"This report gives details on hosts that were tested and issues that were " +"found." +msgstr "" + +#: nessus/pdf_output.c:768 +msgid "" +"Please follow the recommended steps and procedures to eradicate these " +"threats.\n" +msgstr "" + +#: nessus/pdf_output.c:772 +#, c-format +msgid "Scan started at: %s
\n" +msgstr "" + +#: nessus/pdf_output.c:773 +#, c-format +msgid "Scan finished at: %s
\n" +msgstr "" + +#: nessus/pdf_output.c:779 +msgid "Host" +msgstr "" + +#: nessus/pdf_output.c:782 +msgid "Possible Issues" +msgstr "" + +#: nessus/pdf_output.c:785 +msgid "Holes" +msgstr "" + +#: nessus/pdf_output.c:788 +msgid "Warnings" +msgstr "" + +#: nessus/pdf_output.c:791 +msgid "Notes" +msgstr "" + +#: nessus/pdf_output.c:807 +msgid "Security hole(s) found" +msgstr "" + +#: nessus/pdf_output.c:817 +msgid "Security note(s) found" +msgstr "" + +#: nessus/pdf_output.c:822 +msgid "No noticeable information found" +msgstr "" + +#: nessus/pdf_output.c:840 +msgid "Total" +msgstr "" + +#: nessus/pdf_output.c:902 +msgid "Family" +msgstr "" + +#: nessus/pdf_output.c:903 +msgid "Version" +msgstr "" + +#: nessus/pdf_output.c:906 +msgid "XRefs" +msgstr "" + +#: nessus/pdf_output.c:921 +msgid "Parameters" +msgstr "" + +#: nessus/pdf_output.c:944 +msgid "Appendix: NVT Information" +msgstr "" + +#: nessus/plugin_infos.c:56 +#, c-format +msgid "Dependencies of Plugin '%s'" +msgstr "" + +#: nessus/plugin_infos.c:87 +msgid "No dependencies found." +msgstr "" + +#: nessus/plugin_infos.c:112 +msgid "), currently " +msgstr "" + +#: nessus/plugin_infos.c:114 +msgid "enabled" +msgstr "" + +#: nessus/plugin_infos.c:116 +msgid "disabled" +msgstr "" + +#: nessus/plugin_infos.c:177 nessus/plugin_infos.c:409 +msgid "Set plugin timeout..." +msgstr "" + +#: nessus/plugin_infos.c:194 +msgid "Set plugin timeout:" +msgstr "" + +#: nessus/plugin_infos.c:281 +#, c-format +msgid "Error ! Plugin selected not found ?!\n" +msgstr "" + +#: nessus/plugin_infos.c:316 +#, c-format +msgid "Family: %s" +msgstr "" + +#: nessus/plugin_infos.c:323 +#, c-format +msgid "Category: %s" +msgstr "" + +#: nessus/plugin_infos.c:330 +#, c-format +msgid "OpenVAS Plugin ID: %d" +msgstr "" + +#: nessus/plugin_infos.c:340 +#, c-format +msgid "CVE: %s" +msgstr "" + +#: nessus/plugin_infos.c:351 +#, c-format +msgid "Bugtraq ID: %s" +msgstr "" + +#: nessus/plugin_infos.c:362 +#, c-format +msgid "Other references: %s" +msgstr "" + +#: nessus/plugin_infos.c:381 +msgid "What is shown if the attack is successful:" +msgstr "" + +#: nessus/plugin_infos.c:416 +msgid "Show dependencies" +msgstr "" + +#: nessus/preferences.c:156 +#, c-format +msgid "Error writing %s: %s" +msgstr "" + +#: nessus/preferences.c:163 +#, c-format +msgid "" +"# OpenVAS-Client Preferences File\n" +"\n" +msgstr "" + +#: nessus/preferences.c:231 +#, c-format +msgid "The OpenVAS-Client doesn't have the right to read %s\n" +msgstr "" + +#: nessus/preferences.c:245 +msgid "Couldn't find prefs file... Creating a new one..." +msgstr "" + +#: nessus/preferences.c:249 nessus/preferences.c:256 +#, c-format +msgid "Error creating %s: %s" +msgstr "" + +#: nessus/preferences.c:264 +#, c-format +msgid "Error reading %s: %s" +msgstr "" + +#: nessus/preferences.c:282 +#, c-format +msgid "Parse error in %s: %s" +msgstr "" + +#: nessus/preferences.c:296 +#, c-format +msgid "Missing 'end' in %s" +msgstr "" + +#: nessus/preferences.c:523 +#, c-format +msgid "%s could not be opened write only" +msgstr "" + +#: nessus/preferences.c:527 +#, c-format +msgid "# This file was automagically created by OpenVAS-Client\n" +msgstr "" + +#: nessus/preferences.c:644 +msgid "Global Settings" +msgstr "" + +#: nessus/preferences.c:760 nessus/preferences.c:781 +msgid "prefs_set_value() called with illegal type" +msgstr "" + +#: nessus/read_target_file.c:41 nessus/report.c:204 +msgid "Load file" +msgstr "" + +#: nessus/read_target_file.c:79 +#, c-format +msgid "" +"Could not open %s\n" +"open(%s): %s" +msgstr "" + +#: nessus/read_target_file.c:85 +#, c-format +msgid "Cannot stat %s (%s)\n" +msgstr "" + +#: nessus/read_target_file.c:97 +msgid "file mapping failed: unexpected end-of-file\n" +msgstr "" + +#: nessus/read_target_file.c:99 +#, c-format +msgid "file mapping failed: %s\n" +msgstr "" + +#: nessus/report.c:117 +msgid "report_save() called with illegal type" +msgstr "" + +#: nessus/report.c:136 +msgid "report_save() couldn't create context" +msgstr "" + +#: nessus/report.c:142 +msgid "report_save() couldn't find a report filename" +msgstr "" + +#: nessus/report.c:150 +msgid "report_save() couldn't save the report" +msgstr "" + +#: nessus/report.c:162 +msgid "report_save() couldn't save the plugin information" +msgstr "" + +#: nessus/sslui.c:90 +msgid "SSL Setup" +msgstr "" + +#: nessus/sslui.c:133 +msgid "Display and remember the server certificate, do not care about the CA" +msgstr "" + +#: nessus/sslui.c:143 +msgid "" +"Trust the server certificate if and only if it is valid and certified by the " +"CA" +msgstr "" + +#: nessus/sslui.c:151 +msgid "Verify that the server certificate is valid *and* remember it" +msgstr "" + +#: nessus/sslui.c:162 +msgid "OK" +msgstr "" + +#: nessus/sslui.c:199 +msgid "" +"Please choose your level of SSL paranoia (Hint: if you want to manage\n" +"many servers from your client, choose 2. Otherwise, choose 1, or 3,\n" +"if you are paranoid.\n" +msgstr "" + +#: nessus/sslui.c:285 +msgid "This certificate has never been shown before. Here it is:" +msgstr "" + +#: nessus/sslui.c:315 +msgid "Do you accept this certificate?" +msgstr "" + +#: nessus/sslui.c:325 +msgid "Yes" +msgstr "" + +#: nessus/sslui.c:331 +msgid "No" +msgstr "" + +#: nessus/sslui.c:379 +#, c-format +msgid "This certificate has never been seen before and can't be shown\n" +msgstr "" + +#: nessus/sslui.c:399 +#, c-format +msgid "Do you accept it? (y/n) " +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:117 +msgid "This page is not available in the current context." +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:280 +#, c-format +msgid "Connection: %s@%s %s" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:281 +#: nessus/prefs_dialog/prefs_context.c:284 +#: nessus/prefs_dialog/prefs_context.c:287 +msgid "encrypted" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:281 +#: nessus/prefs_dialog/prefs_context.c:284 +#: nessus/prefs_dialog/prefs_context.c:287 +msgid "unencrypted" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:283 +#, c-format +msgid "Connection: %s@%s:%d %s" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:286 +#, c-format +msgid "Connection: user %s %s" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:292 +#: nessus/prefs_dialog/prefs_dialog.c:777 +msgid "not connected" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:344 +#, c-format +msgid "Task: %s" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:351 +#, c-format +msgid "Scope: %s (Task: %s)" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:357 +#, c-format +msgid "Report for scope: %s (Task: %s)" +msgstr "" + +#: nessus/prefs_dialog/prefs_context.c:362 +msgid "prefs_context_update called with illegal context." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:111 +msgid "users-manual.pdf" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:131 +msgid "The global settings have been saved." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:187 +msgid "Not yet implemented." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:362 +msgid "OpenVAS-Client" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:384 +msgid "_File" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:389 +msgid "_Connect" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:393 +msgid "_Disconnect" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:400 +msgid "SLAD _Install" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:404 +msgid "_Scan Assistant" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:412 +msgid "Save _Global Settings" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:424 +msgid "_View" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:429 +msgid "_Toolbar" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:433 +msgid "_Message log" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:439 +msgid "_Task" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:444 +#: nessus/prefs_dialog/prefs_dialog.c:476 +msgid "_New" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:448 +#: nessus/prefs_dialog/prefs_dialog.c:480 +#: nessus/prefs_dialog/prefs_dialog.c:512 +msgid "_Rename" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:458 +msgid "_Scope" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:489 +msgid "_Move to task" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:507 +msgid "_Report" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:522 +msgid "_Import" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:526 +msgid "E_xport" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:536 +msgid "_Help" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:541 +msgid "_Users Manual" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:545 +msgid "_About" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:581 +#: nessus/prefs_dialog/prefs_dialog.c:583 +#: nessus/prefs_dialog/prefs_scan_assistant.c:238 +msgid "Scan Assistant" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:590 +#: nessus/prefs_dialog/prefs_dialog.c:592 +msgid "New" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:599 +#: nessus/prefs_dialog/prefs_dialog.c:601 +msgid "Delete" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:611 +#: nessus/prefs_dialog/prefs_dialog.c:613 +msgid "Connect" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:621 +#: nessus/prefs_dialog/prefs_dialog.c:623 +msgid "Disconnect" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:633 +#: nessus/prefs_dialog/prefs_dialog.c:635 +msgid "Execute" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:656 +msgid "Context" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:686 +msgid "Comments" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:692 +msgid "Options" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:698 +#: nessus/prefs_dialog/prefs_dialog_prefs.c:170 +msgid "Report" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:718 +msgid "Message log" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:739 +msgid "" +"Welcome to OpenVAS-Client, http://www.openvas.org/\n" +"NessusClient origin: Copyright 1998-2007 by Renaud Deraison\n" +"New code since OpenVAS-Client: Copyright 2007 Intevation GmbH\n" +"Authors: Renaud Deraison, Thomas Arendsen Hein, Jan-Oliver Wagner, Bernhard " +"Herzog, Michel Arboi (SSL-Support), Bruce Verderaime (Pie/Charts)\n" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog.c:1519 +msgid "" +"You must enter the name of the primary target\n" +"to attack in the 'target' section" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:75 +msgid "You must enter a valid hostname or IP" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:89 +msgid "The port number is out of range" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:110 +msgid "Select File" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:123 +msgid "Please choose a filename." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:125 +#: nessus/prefs_dialog/prefs_scope_tree.c:484 +#, c-format +msgid "File \"%s\" doesn't exist." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:144 +msgid "You must enter a valid username" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:164 +msgid "You must enter a valid password" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:183 +msgid "You must enter a filename for Trusted CA" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:198 +msgid "You must enter a filename for the SSL Certificate" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:213 +msgid "You must enter a filename for the SSL Key" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:239 +msgid "Connecting ..." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:253 +#, c-format +msgid "Connecting to OpenVAS server \"%s\" ..." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:260 +msgid "Initiating connection ..." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:340 +msgid "Select ..." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:394 +msgid "Connect to OpenVAS Server" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:410 +msgid "OpenVAS Server" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:428 +msgid "Hostname:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:446 +msgid "_Default" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:455 +msgid "Port:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:459 +msgid "Authentication" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:481 +msgid "Login:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:491 +msgid "Password:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:496 +msgid "SSL options" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:513 +msgid "Use SSL encryption" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:526 +msgid "Authentication by certi_ficate" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:538 +msgid "Trusted CA:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:544 +msgid "User Certificate File:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_auth.c:550 +msgid "User Key File:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_misc.c:50 +msgid "Misc." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_misc.c:64 +msgid "Max threads : " +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_misc.c:73 +msgid "Remember the set of plugins" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_plugins_prefs.c:100 +msgid "Advanced Plugins preferences" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_plugins_prefs.c:107 +#: nessus/prefs_dialog/prefs_options.c:101 +msgid "Credentials" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_plugins_prefs.c:375 +msgid "Select file" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_plugins_prefs.c:520 +msgid "Select..." +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:58 +msgid "Preferences" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:78 +msgid "User interface" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:90 +msgid "Auto expand tree elements" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:96 +msgid "Order by:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:106 +#: nessus/prefs_dialog/prefs_report.c:473 +msgid "Host/Port/Severity" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:108 +#: nessus/prefs_dialog/prefs_report.c:475 +msgid "Port/Host/Severity" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:114 +msgid "Connection to OpenVAS Server" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:126 +msgid "Automatically connect" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:132 +msgid "Plugin Cache" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:144 +msgid "Cache plugin information when connecting" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:151 +msgid "Use plugin cache with reports" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:159 +msgid "Load plugin cache for scopes immediately" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:182 +msgid "Include plugin details in PDF" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:197 +msgid "External Links in HTML/PDF" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:208 +msgid "OpenVAS IDs:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:220 +msgid "CVE IDs:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_prefs.c:232 +msgid "BugTraq IDs:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:141 +msgid "General scan options" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:157 +msgid "Determine if hosts are alive before testing them" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:170 +msgid "Port range:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:180 +msgid "Consider unscanned ports as closed" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:190 +msgid "Hosts to test concurrently:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:201 +msgid "Checks to perform concurrently:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:213 +msgid "Path to the CGIs:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:224 +msgid "Do a reverse lookup on the IP before testing it" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:229 +msgid "Optimize the test" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:235 +msgid "Safe checks" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:240 +msgid "Designate hosts by their MAC address" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:245 +msgid "Port scanner:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_scan_opt.c:266 +#: nessus/prefs_dialog/prefs_plugins_tree.c:457 +msgid "Active" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:57 +msgid "Server rules (priority over user rules): can not be shown" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:60 +msgid "Serverside user rules (priority over clientside user rules)" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:63 +msgid "Clientside user rules" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:213 +msgid "The target for this rule must be a valid IP or Subnet.\n" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:286 +msgid "User Access Rules" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:304 +msgid "Action:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:322 +msgid "Target:" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:334 +msgid "Add rule" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:363 +msgid "Rules" +msgstr "" + +#: nessus/prefs_dialog/prefs_dialog_user.c:374 +msgid "Remove rule" +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:35 +msgid "" +"Enter the server name, where the OpenVAS Server resides on. This may be a " +"domain name or an IP address." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:39 +msgid "" +"Enter the port number where you will be serviced by the OpenVAS Server. With " +"older server systems, this is the port 3001, but the official port is 1241." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:44 +msgid "Set to default OpenVAS port 1241." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:47 +msgid "" +"Enter the user name where you are registerd with on the OpenVAS Server. If " +"you log in for the first time, you will be asked for a password. Maybe you " +"need to ask your OpenVAS Server administrator to create a login for you." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:53 +msgid "" +"Maximal of number of hosts that the OpenVAS Server will test at the same " +"time. Be aware that the OpenVAS Server will spawn max_hosts x max_checks " +"processes!" +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:58 +msgid "" +"Maximal number of security checks that will be launched at the same time " +"against each host. Be aware that the OpenVAS Server will spawn max_hosts x " +"max_checks processes!" +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:63 +msgid "Name of the remote file that several plugins will attempt to read." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:67 +msgid "" +"If this option is checked, then OpenVAS Server will send some TCP packets to " +"the target host to determine if the target host is alive. This method does " +"not use ICMP as ICMP is unreliable as less and less hosts are answering to " +"ICMP echo requests." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:73 +msgid "" +"If this option is set, OpenVAS Server will do a reverse lookup on the IP " +"addresses before it tests them. This may slow down the whole test." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:78 +msgid "" +"Are the target hosts protected by a firewall ? If so and if we are outside " +"the firewall, it is a good idea to turn this option ON, so that OpenVAS " +"Server will perform some additional tests to check that the remote firewall " +"is well configured (this option is still experimental)." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:86 +msgid "" +"Security tests may ask the OpenVAS Server to be launched if and only if some " +"information gathered by other test exist in the knowledge base, or if and " +"only if a given port is open. This option speeds up the test, but may make " +"OpenVAS Server miss some vulnerability. If you are paranoid, disable this " +"option" +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:94 +msgid "" +"Some security checks may harm the target server, by disabling the remote " +"service temporarily or until a reboot. If you enable this option, OpenVAS " +"Server will rely on banners instead of actually performing a security check. " +"You will obtain a less reliable report, but you will less likely disrupt the " +"network users by doing a test. From a security point of view, we recommend " +"you disable this option. From a sysadmin point of view, we recommend you " +"enable it." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:105 +msgid "" +"If you enable this option, the hosts on the local network will be designated " +"by their ethernet MAC address instead of their IP address. This is " +"especially useful if you are using OpenVAS in a DHCP network. If unsure, " +"disable this option." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:111 +msgid "" +"Ports that will be scanned by OpenVAS Server. You can enter single ports, " +"such as \"1-8000\"; or more complex sets, such as \"21,23,25,1024-2048,6000" +"\". Put \"-1\" for no portscan, or put \"default\" to scan the default ports " +"in the OpenVAS services file." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:118 +msgid "" +"To save scanning time, you may ask OpenVAS Server to declare TCP ports it " +"did not scan as closed. This will result in an incomplete audit but it will " +"reduce scanning time and prevent OpenVAS Server from sending packets to " +"ports you did not specify. If this option is disabled, then OpenVAS Server " +"will consider ports whose state it does not know as open." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:126 +msgid "" +"OpenVAS Server will perform an AXFR request (that is, a zone transfer) to " +"the target name server and will attempt to obtain the list of the hosts of " +"the target domain. Then, it will test each host." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:132 +msgid "" +"OpenVAS Server will determine which hosts can mount the filesystems exported " +"by the target server, and will test them. Beware : this test is recursive." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:137 +msgid "" +"OpenVAS Server will test the whole subnet of the target host. If you select " +"this option, you should allow OpenVAS Server to ping the hosts before " +"scanning them in the 'Scan options' section." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:142 +msgid "" +"The first host(s) that will be attacked by OpenVAS Server. The options below " +"allow you to extend the test to a larger set of computer. You may define " +"several primary targets by separating them with a comma (,). ie : \"host1," +"host2\"." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:148 +msgid "" +"A textfile can be specified that contains the list of targets. This textfile " +"may contain comma-separated lists of host and also may contain many of such " +"lines." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:153 +msgid "" +"It is possible to check for the presence of CGIs in multiple paths like /cgi-" +"bin, /cgis, /home-cgis, and so on. In that case, put all your paths here " +"separated by colons. For instance: '/cgi-bin:/cgi-aws:/~deraison/cgi'." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:159 +msgid "" +"The warning sign means that this plugin may harm the target host by " +"disabling the attacked service or by crashing the host. You should be " +"careful when you enable it since it may force you to reboot your servers or " +"restart some services manually." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:167 +msgid "" +"If you turn on this option, all the information collected about the target " +"hosts will be saved on the side of OpenVAS Server for further re-use. See " +"http://www.nessus.org/doc/kb_saving.html for details." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:173 +msgid "" +"If you select this option, all the hosts selected in the 'Target' section of " +"the OpenVAS-Client will be tested." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:177 +msgid "" +"If you select this option, only the hosts to which a recent knowledge base " +"is attached will be tested." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:181 +msgid "" +"If you select this option, only the hosts which have no (or an outdated) " +"knowledge base attached will be tested. Use this option to populate your " +"knowledge bases." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:186 +msgid "" +"If you select this option, the knowledge bases of the target hosts will be " +"restored in memory if they are recent enough. You can use this option with " +"the following ones to prevent OpenVAS Server to scan a host which was " +"scanned in the past, or to prevent the security checks that were performed " +"in the past to be performed again." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:193 +msgid "" +"If you select this option, the port scanners that were launched in the past " +"against the targetted hosts will not be launched again and the data of the " +"knowledge base will be used as the result of the portscan." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:199 +msgid "" +"If you select this option, all the plugins that performs information " +"gathering and which have already been launched against the target hosts will " +"not be launched again." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:204 +msgid "" +"If you select this option, all the plugins that performs attacks and which " +"have already been launched against the target hosts will not be launched " +"again." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:209 +msgid "" +"If you select this option, all the plugins that may harm the target hosts " +"and which have already been launched will not be launched again." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:214 +msgid "This value defines the maximum age (in seconds) of a knowledge base." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:218 +msgid "" +"If this option is set, the client will only report what has changed between " +"the new scan and the last one." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:224 +msgid "" +"If you enable this option, then OpenVAS Server will enable the plugins that " +"are depended on by the set of plugins you selected." +msgstr "" + +#: nessus/prefs_dialog/prefs_help.h:228 +msgid "" +"If you enable this option, then openvasd will not report data coming from " +"the plugins that you did not specifically enable." +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:37 +msgid "Enable KB saving" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:38 +msgid "Test all hosts" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:39 +msgid "Only test hosts that have been tested in the past" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:40 +msgid "Only test hosts that have never been tested in the past" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:42 +msgid "Reuse the knowledge bases about the hosts for the test" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:44 +msgid "Do not execute scanners that have already been executed" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:45 +msgid "Do not execute info gathering plugins that have already been executed" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:46 +msgid "Do not execute attack plugins that have already been executed" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:47 +msgid "Do not execute DoS plugins that have already been executed" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:285 +msgid "OpenVAS Knowledge Base" +msgstr "" + +#: nessus/prefs_dialog/prefs_kb.c:374 +msgid "Max age of a saved KB (in secs) : " +msgstr "" + +#: nessus/prefs_dialog/prefs_report.c:140 +#, c-format +msgid "Scan took place from %s to %s" +msgstr "" + +#: nessus/prefs_dialog/prefs_report.c:142 +#, c-format +msgid "Scan started on %s" +msgstr "" + +#: nessus/prefs_dialog/prefs_report.c:144 +#, c-format +msgid "Scan finished on %s" +msgstr "" + +#: nessus/prefs_dialog/prefs_report.c:146 +msgid "Time of scan not available." +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:253 +msgid "Step 1: Task" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:255 +msgid "" +"Tasks describe what you want to do. You can use it to logically group\n" +"your duties by subject, frequency, location or anything else.\n" +"Possible task names are:\n" +" - Weekly checks\n" +" - Customer XYZ\n" +" - Hosts of project ABC\n" +"You should also enter a comment further explaining the task." +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:263 +msgid "Please enter a name for your task:" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:264 +#: nessus/prefs_dialog/prefs_scan_assistant.c:281 +msgid "Comment:" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:269 +msgid "Step 2: Scope" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:271 +msgid "" +"Scopes are part of a task. Each scope represents a connection\n" +"to a OpenVAS Server and a list of hosts to scan.\n" +"Possible scopes names are:\n" +" - Internet servers (e.g. in task \"Weekly Checks\")\n" +" - Application servers (e.g. in task \"Customer XYZ\")\n" +" - Workstations (e.g. in task \"Hosts of project ABC\")\n" +"You should also enter a comment further explaining the scope." +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:280 +msgid "Please enter a name for the current scope:" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:286 +msgid "Step 3: Targets" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:288 +msgid "" +"Targets are the hosts and networks you want to scan in this scope.\n" +"They can be entered in the following formats:\n" +" - simple hostname (for hosts in your LAN)\n" +" - fully qualified host name (e.g. www.example.com)\n" +" - IP adress (e.g. 192.168.0.1)\n" +" - IP network (e.g. 192.168.0.0/24 or 192.168.0.0/255.255.255.0)\n" +"You can enter several targets by separating them with a comma." +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:297 +msgid "Please enter the targets to scan:" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:299 +msgid "" +"Warning: Please make sure you are allowed to scan these hosts!\n" +"Harmful checks are disabled by default, but some computers and\n" +"especially print servers have bugs which might crash them.\n" +"Consider getting a written permission before scanning important\n" +"servers which are in production." +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:309 +msgid "Step 4: Execute" +msgstr "" + +#: nessus/prefs_dialog/prefs_scan_assistant.c:311 +msgid "" +"You are now ready to start the scan.\n" +"\n" +"When clicking on \"Execute\", the connection dialog will appear.\n" +"You have to choose a Nessus Server which can reach the targets\n" +"you have specified in the previous step.\n" +"\n" +"Note: You need to have an account on this server. Contact your\n" +"system administrator if you don't have one yet.\n" +"\n" +"The scan progress window will inform you about the current\n" +"status and allows you to stop scanning a single host or abort\n" +"the whole scan.\n" +"\n" +"To repeat this scan, select the scope which will be created now,\n" +"and choose \"Execute\" from the toolbar or the \"Scope\" menu.\n" +"Each scan will create a separate new report under the current Scope." +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:178 +msgid "scopetree_rename() called with illegal type" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:254 +msgid "scopetree_new_with_parent(): parent type >= child type" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:383 +#, c-format +msgid "" +"Really delete task\n" +" `%s'\n" +"and all scopes and reports in it?" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:386 +#, c-format +msgid "" +"Really delete scope\n" +" `%s'\n" +"all reports in it?" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:389 +#, c-format +msgid "" +"Really delete report\n" +" `%s'?" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:392 +msgid "scopetree_delete() called with illegal type" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:465 +msgid "scopetree_context_delete() called with illegal type" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:482 +#: nessus/prefs_dialog/prefs_scope_tree.c:524 +msgid "Please choose a target filename." +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:498 +msgid "Open configuration for new scope" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:526 +#, c-format +msgid "File \"%s\" already exists." +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:539 +msgid "Save scope configuration" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:708 +msgid "on_scope_edited(): menuitem has no label." +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:794 +msgid "Low" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:806 +msgid "Medium" +msgstr "" + +#: nessus/prefs_dialog/prefs_scope_tree.c:818 +msgid "High" +msgstr "" + +#: nessus/prefs_dialog/prefs_options.c:93 +msgid "General" +msgstr "" + +#: nessus/prefs_dialog/prefs_options.c:97 +msgid "Plugins" +msgstr "" + +#: nessus/prefs_dialog/prefs_options.c:105 +#: nessus/prefs_dialog/prefs_target.c:49 +msgid "Target selection" +msgstr "" + +#: nessus/prefs_dialog/prefs_options.c:109 +msgid "Access Rules" +msgstr "" + +#: nessus/prefs_dialog/prefs_options.c:113 +msgid "Prefs." +msgstr "" + +#: nessus/prefs_dialog/prefs_options.c:117 +msgid "KB" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:87 +#: nessus/prefs_dialog/prefs_plugins.c:284 +msgid "No filter active" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:91 +#, c-format +msgid "Filter matches %u plugins" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:166 +#, c-format +msgid "%d plugins; %d enabled" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:238 +msgid "Plugin selection" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:265 +msgid "No plugins" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:291 +msgid "Fi_lter..." +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:302 +msgid "Enable all" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:309 +msgid "Disable all" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:321 +msgid "Expand all" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:327 +msgid "Collapse all" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:340 +msgid "Dependencies:" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:346 +msgid "Enable at runtime" +msgstr "" + +#: nessus/prefs_dialog/prefs_plugins.c:352 +msgid "Silent" +msgstr "" + +#: nessus/prefs_dialog/prefs_target.c:65 +msgid "Target(s):" +msgstr "" + +#: nessus/prefs_dialog/prefs_target.c:76 +msgid "Read file..." +msgstr "" + +#: nessus/prefs_dialog/prefs_target.c:84 +msgid "Perform a DNS zone transfer" +msgstr "" --- openvas-client-2.0.1.orig/debian/dirs +++ openvas-client-2.0.1/debian/dirs @@ -0,0 +1 @@ +usr/bin --- openvas-client-2.0.1.orig/debian/TODO +++ openvas-client-2.0.1/debian/TODO @@ -0,0 +1,3 @@ + +- Review ./src/xpm/OpenVAS-logo.xpm and consider using it (or part) as the logo + for OpenVAS (in the menu and desktop file) --- openvas-client-2.0.1.orig/debian/docs +++ openvas-client-2.0.1/debian/docs @@ -0,0 +1,4 @@ +README +TODO +CHANGES +COPYING.OpenSSL --- openvas-client-2.0.1.orig/debian/changelog +++ openvas-client-2.0.1/debian/changelog @@ -0,0 +1,112 @@ +openvas-client (2.0.1-1) unstable; urgency=low + + * New upstream version. + + -- Javier Fernandez-Sanguino Pen~a Fri, 02 Jan 2009 01:43:18 +0100 + +openvas-client (1.0.3-2) unstable; urgency=low + + * Upload making this a non-Debian native package, as it should. + + -- Javier Fernandez-Sanguino Pen~a Sun, 06 Apr 2008 02:17:17 +0200 + +openvas-client (1.0.3-1) unstable; urgency=low + + * New upstream release + * Removed man8 from upstream's make install-man + + -- Tim Brown Fri, 04 Apr 2008 22:26:00 +0000 + +openvas-client (1.0.2-1) unstable; urgency=low + + * New package on the upstream release + (fixes all the issues which made ftp masters REJECT the previous + upload of the 1.0.1) release: + - does not provide test.pdf anymore + [ Javier Fernandez-Sanguino ] + * Expand the debian/copyright information based both on the information + available at COPYING.README and a deep review of the copyright notices + of all the source code. + - Detail which contents are GPLv2 or later, just GPLv2, LGPL or + MIT/BSD + - Include the list of all copyright holders (by content) + - Include list of Authors of the OpenVAS GUI itself (frontend and + backend) + [ Tim Brown ] + * Incorporates the fixes to use libgdchart-gd2-noxpm-dev, it no longer + build the embedded copy but uses the Debian package. + * Updated openvas-client.menu in line with Debian Menu sub-policy + * Removed man8 from upstream's make install + * Depends on dpatch + + -- Tim Brown Fri, 28 Dec 2007 11:41:04 +0000 + +openvas-client (1.0.1-2) unstable; urgency=low + + * Updated debian/copyright to list all contributing authors based on + grep for "\([cC]\)|[cC]opyright" + + -- Tim Brown Sun, 04 Nov 2007 21:47:52 +0000 + +openvas-client (1.0.1-1) unstable; urgency=low + + * New upstream release. This release removes the non-free text files + (README_SSL, doc/WARNING.En, doc/WARNING.Fr) from Nessus which + was the main reason 1.0.0 was not allowed into NEW last time + * Other fixes: + - Temporary files are prefixed with "openvas" instead of "nessus" + - Incorporates the fixes to the Makefile introduced in previous + package versions. + + -- Javier Fernandez-Sanguino Pen~a Tue, 30 Oct 2007 00:39:17 +0100 + +openvas-client (1.0.0-2) unstable; urgency=low + + * Review and upload to Debian (Closes: #435456) + * Restore the changes introduced in 0.9.1-2 + * Use Homepage: in debian/control's package headers + * Add a debian/TODO file (only one item currently) + + -- Javier Fernandez-Sanguino Pen~a Sun, 14 Oct 2007 16:56:59 +0200 + +openvas-client (1.0.0-1) unstable; urgency=low + + * New upstream release + + -- Tim Brown Wed, 26 Sep 2007 00:41:58 +0100 + +openvas-client (0.9.1-2) unstable; urgency=low + + * Make it Replace: nessus < 3 also + * Remove spaces before dots in the control definition + * Add a Homepage: to the control definition + * Added myself as an uploader: + * Added the SSL exemption from COPYING.OpenSSL to debian/copyright + * Added symlinks to both the binary and the manpage for users that + try to execute it using the package name. + * Add a menu file so the application is available in Debian menus. + * Install the desktop file in the proper location + * Add a Spanish translation to the Desktop file + * Comment out the XPM icon as none is available which meets + FreeDesktop's standards. + * Fix top Makefile so that it cleans src/gui too + * Compile and install the PO files to get translations also in the package. + + -- Javier Fernandez-Sanguino Pen~a Wed, 01 Aug 2007 14:44:10 +0200 + +openvas-client (0.9.1-1) unstable; urgency=low + + * New upstream release + * Initial release (Closes: #435456) + * Added replaces: nessusclient + * Removed /usr/sbin from dirs + * Fixed copyright + + -- Tim Brown Wed, 01 Aug 2007 00:25:05 +0100 + +openvas-client (0.9.0-1) unstable; urgency=low + + * Initial release + + -- Tim Brown Thu, 19 Jul 2007 12:18:13 +0100 + --- openvas-client-2.0.1.orig/debian/copyright +++ openvas-client-2.0.1/debian/copyright @@ -0,0 +1,171 @@ +This package was debianized by Tim Brown on +Thu, 19 Jul 2007 12:18:13 +0100. + +It was downloaded from http://www.openvas.org/ + +Upstream Author: OpenVAS + +Copyright: + + - OpenVAS GUI and documentation: + * Copyright (C) 2004, 2005, 2007 Intevation GmbH + * Copyright (C) 2005 by DN-Systems GmbH + * Copyright (C) 1998-2006 Renaud Deraison + * Copyright (C) 1993 Free Software Foundation, Inc [regex library] + * Copyright (C) 2001 Michael Arboi [ssl] + + - Include files: + [nessus] Copyright (C) 1998-2006 Renaud Deraison + Copyright (c) Nessus Consulting S.A.R.L., 2000 - 2001 + [getopt] Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc. + + - Translations: + * Copyright (C) 2007 Intevation GmbH [he, + * Copyright (C) 2007 Javier Fernandez-Sanguino [es] + * Copyright (C) 1995-1997, 2000-2003 by Ulrich Drepper + [makefile] + +Other copyrights: + +- Libnessus library: + Copyright (C) 1998-2002 Renaud Deraison + Copyright (C) 2001 Michael Arboi + Copyright (c) Nessus Consulting S.A.R.L., 2000 - 2001 + Copyright (c) mjh-EDV Beratung, 1996-1999 + Copyright (C) Free Software Foundation, Inc., [getopt] + Copyright (c) 1995-1999 Kungliga Tekniska Högskolan + (Royal Institute of Technology, Stockholm, Sweden). [snprintf] + + - Autoconf: + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, + 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, + Inc. + + - GD chart: + * Copyright. Bruce Verderaime. 1998, 1999, 2000 + + * Copyright 1994, Cold Spring Harbor Labs. + * Copyright 1998, Libor Skarvada, libor@informatics.muni.cz + * Copyright (C) 1989 by Jef Poskanzer. + * Copyright (C) 1998 Hutchison Avenue Software Corporation + * Copyright 1990, 1991, 1993, David Koblas + + +Authors: + + - OpenVAS GUI: + * Renaud Deraison + * Thomas Arendsen Hein + * Dirk Jagdmann + * Jan-Oliver Wagner + * Thomas Arendsen Hein + * Bernhard Herzog + * Michael Arboi [ssl] + +License: + +This package holds software with three four different licenses: + +- GNU General Public License version 2 or later: the GUI itself (the frontend) +- GNU General Public License version 2: the nessus backend +- GNU Library General Public License version 2 or later: the nessus library, + its includes, and some files of the nessus backend +- A BSD/MIT license: the GD chart library and some of the contents of the + nessus library + +The following text explains which licenses apply to which parts of the code. In +case of doubt the interested party should review the copyright headers of the +affected files. + +The license for most of the software in this package is the following: + + This software is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License. + + This software is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +Notice that some parts of the software (source code files) are available +at a GPL version 2 or (at your choice) a later version, as described above. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +In addition, as a special exception, the copyright holders give +permission to link the code of portions of this program with the +OpenSSL library under certain conditions as described in each +individual source file, and distribute linked combinations +including the two. + +You must obey the GNU General Public License in all respects +for all of the code used other than OpenSSL. If you modify +file(s) with this exception, you may extend this exception to your +version of the file(s), but you are not obligated to do so. If +you do not wish to do so, delete this exception statement from your +version. If you delete this exception statement from all source +files in the program, then also delete it here. + +Also, OpenVAS sources include (parts of) the libnessus library under the +libnessus/ directory, this library is distributed under the GNU LIBRARY GENERAL +PUBLIC LICENSE version 2 (or later). On Debian systems, the complete text of +the GNU Library General Public License can be found in +`/usr/share/common-licenses/LGPL'. + +The libnessus library includes the snprintf implementation +Copyright (c) 1995-1999 Kungliga Tekniska Högskolan (Royal Institute of +Technology, Stockholm, Sweden) which is distributed under the following license: + + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * 3. Neither the name of the Institute nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + +OpenVAS sources also include the GD chart library under the +nessus/gdchart0.94b/ which has a license similar to BSD/MIT, although the +Debian package is not compiled using this library but uses the library +available in the Debian archive (libgdchart-gd2) + +The GDchart library holds the following copyright: + ++----------------------------------------------------------------------- +| GDChart is free for use in your applications and for chart generation. +| YOU MAY NOT re-distribute or represent the code as your own. +| Any re-distributions of the code MUST reference the author, and include +| any and all original documentation. +| Copyright. Bruce Verderaime. 1998, 1999, 2000 ++----------------------------------------------------------------------- +IOW: Use it. Don't plagiarize it! + + +The Debian packaging is (C) 2007, Tim Brown and +is licensed under the GPL, see above. --- openvas-client-2.0.1.orig/debian/openvas-client.menu +++ openvas-client-2.0.1/debian/openvas-client.menu @@ -0,0 +1 @@ +?package(openvas-client): needs="X11" section="Applications/System/Security" title="OpenVAS client" command="OpenVAS-Client" --- openvas-client-2.0.1.orig/debian/compat +++ openvas-client-2.0.1/debian/compat @@ -0,0 +1 @@ +5 --- openvas-client-2.0.1.orig/debian/rules +++ openvas-client-2.0.1/debian/rules @@ -0,0 +1,117 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: patch configure + dh_testdir + # Add here commands to configure the package. +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/openvas-client.sgml > openvas-client.1 + +patch: patch-stamp + +patch-stamp: + dpatch apply-all + dpatch cat-all >patch-stamp + +clean: clean-patched unpatch + +clean-patched: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + # Clean translations first + [ ! -f po/Makefile ] || [ ! -f nessus.tmpl ] || $(MAKE) -C po distclean + -rm -f po/*gmo # Not sure if we should use 'maintainer-clean' instead.. + -rm -f po/stamp-po + [ ! -f Makefile ] || $(MAKE) distclean + # These should not be removed, otherwise the package is unbuildable + # on the second run if the system does not have autoconf installed + # rm -f config.sub config.guess + + dh_clean + +unpatch: + dpatch deapply-all + rm -rf patch-stamp debian/patched + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs usr/share/applications + + # Add here commands to install the package into debian/openvas-client. + $(MAKE) prefix=$(CURDIR)/debian/openvas-client/usr install + # Build translations + cd po && $(MAKE) prefix=$(CURDIR)/debian/openvas-client/usr install + # Create a symlink for the binary: + cd debian/openvas-client/usr/bin && ln -s OpenVAS-Client openvas-client + cd debian/openvas-client/usr/share/man/man1 && ln -s OpenVAS-Client.1.gz openvas-client.1.gz + + # Install the desktop icon + install -m 644 nessus/OpenVAS-Client.desktop debian/openvas-client/usr/share/applications + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman + dh_installmenu + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- openvas-client-2.0.1.orig/debian/control +++ openvas-client-2.0.1/debian/control @@ -0,0 +1,23 @@ +Source: openvas-client +Section: net +Priority: extra +Maintainer: Tim Brown +Uploaders: Javier Fernandez-Sanguino Pen~a +Build-Depends: debhelper (>= 5), dpatch, autotools-dev, libssl-dev, libgtk2.0-dev, libgdchart-gd2-noxpm-dev +Homepage: http://www.openvas.org/ +Standards-Version: 3.7.2 + +Package: openvas-client +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Replaces: nessusclient, nessus (<< 3) +Description: Remote network security auditor, the client + The OpenVAS Security Scanner is a security auditing tool. It makes + possible to test security modules in an attempt to find vulnerable + spots that should be fixed. + . + It is made up of two parts: a server, and a client. The server/daemon, + openvasd, is in charge of the attacks, whereas the client, + OpenVAS-Client, provides the user a nice X11/GTK+ interface. + . + This package contains the GTK+ client. --- openvas-client-2.0.1.orig/debian/patches/00list +++ openvas-client-2.0.1/debian/patches/00list @@ -0,0 +1 @@ +01_libgdchart-gd2-noxpm-dev.dpatch --- openvas-client-2.0.1.orig/debian/patches/01_libgdchart-gd2-noxpm-dev.patch.OLD +++ openvas-client-2.0.1/debian/patches/01_libgdchart-gd2-noxpm-dev.patch.OLD @@ -0,0 +1,176 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_libgdchart-gd2-noxpm-dev.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Incorporates the fixes to use libgdchart-gd2-noxpm-dev + +@DPATCH@ + +diff -cr openvas-client-1.0.2.orig/nessus/html_graph_output.c openvas-client-1.0.2/nessus/html_graph_output.c +*** openvas-client-1.0.2.orig/nessus/html_graph_output.c 2007-08-20 11:52:01.000000000 +0100 +--- openvas-client-1.0.2/nessus/html_graph_output.c 2007-12-28 11:22:35.000000000 +0000 +*************** +*** 66,74 **** + -------------------------------------------------------------------*/ + #include + #include "nessus_i18n.h" +! #include "gdchart0.94b/gdc.h" +! #include "gdchart0.94b/gdchart.h" +! #include "gdchart0.94b/gdcpie.h" + #include "report.h" + #include "report_utils.h" + #include "error_dlg.h" +--- 66,78 ---- + -------------------------------------------------------------------*/ + #include + #include "nessus_i18n.h" +! #ifndef HAVE_LIBFREETYPE +! /* prevent undefined references in gdc (http://bugs.debian.org/242936) */ +! # define HAVE_LIBFREETYPE 0 +! #endif +! #include +! #include +! #include + #include "report.h" + #include "report_utils.h" + #include "error_dlg.h" +*************** +*** 968,974 **** + GDCPIE_label_dist = 15; + GDCPIE_LineColor = 0x000000L; + GDCPIE_PlotColor = 0xC0C0C0L; +! GDCPIE_EdgeColor = 0x000000L; + GDCPIE_label_size = GDC_SMALL; + GDCPIE_title_size = GDC_MEDBOLD; + GDCPIE_3d_angle = 45; +--- 972,978 ---- + GDCPIE_label_dist = 15; + GDCPIE_LineColor = 0x000000L; + GDCPIE_PlotColor = 0xC0C0C0L; +! GDCPIE_EdgeColor = GDC_NOCOLOR; /* http://bugs.debian.org/326502 */ + GDCPIE_label_size = GDC_SMALL; + GDCPIE_title_size = GDC_MEDBOLD; + GDCPIE_3d_angle = 45; +*************** +*** 978,983 **** +--- 982,988 ---- + GDC_generate_gif = TRUE; + GDC_hold_img = GDC_DESTROY_IMAGE; + GDC_image = NULL; ++ GDC_image_type = GDC_GIF; + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; + +*************** +*** 1119,1127 **** + GDCPIE_explode = expl; + GDCPIE_Color = clr; + GDCPIE_BGColor = 0xFFFFFFL; +! GDCPIE_EdgeColor = 0x000000L; + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; + pie_gif(480, 360, pie, GDC_3DPIE, num_risks, lbl, risks_f); + fclose(pie); + insert_img(f, "pie_risks.gif"); +--- 1124,1134 ---- + GDCPIE_explode = expl; + GDCPIE_Color = clr; + GDCPIE_BGColor = 0xFFFFFFL; +! GDCPIE_EdgeColor = GDC_NOCOLOR; + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; ++ GDCPIE_percent_fmt = " (%.0f%%)"; ++ GDC_image_type = GDC_GIF; + pie_gif(480, 360, pie, GDC_3DPIE, num_risks, lbl, risks_f); + fclose(pie); + insert_img(f, "pie_risks.gif"); +*************** +*** 1154,1159 **** +--- 1161,1167 ---- + GDC_BGColor = 0xFFFFFFL; /* backgound color (white) */ + GDC_LineColor = 0x000000L; /* line color (black) */ + GDC_SetColor = &(color); ++ GDC_image_type = GDC_GIF; + out_graph(480, 360, chart, GDC_3DBAR, num, services, 1, value); + fclose(chart); + insert_img(f, "chart_dangerous_services.gif"); +*************** +*** 1187,1192 **** +--- 1195,1201 ---- + GDC_BGColor = 0xFFFFFFL; /* backgound color (white) */ + GDC_LineColor = 0x000000L; /* line color (black) */ + GDC_SetColor = color; ++ GDC_image_type = GDC_GIF; + out_graph(480, 360, chart, GDC_3DBAR, num, services, 1, value); + fclose(chart); + insert_img(f, "chart_services_occurences.gif"); +*************** +*** 1218,1223 **** +--- 1227,1233 ---- + GDC_BGColor = 0xFFFFFFL; /* backgound color (white) */ + GDC_LineColor = 0x000000L; /* line color (black) */ + GDC_SetColor = &(color); ++ GDC_image_type = GDC_GIF; + out_graph(480, 360, chart, GDC_3DBAR, num, oses, 1, value); + fclose(chart); + insert_img(f, "chart_operating_systems.gif"); +*************** +*** 1270,1278 **** + GDCPIE_explode = expl; + GDCPIE_Color = clr; + GDCPIE_BGColor = 0xFFFFFFL; +! GDCPIE_EdgeColor = 0x000000L; + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; + pie_gif(480, 360, pie, GDC_3DPIE, 2,names, values); + fclose(pie); + insert_img(f, "pie_most.gif"); +--- 1280,1290 ---- + GDCPIE_explode = expl; + GDCPIE_Color = clr; + GDCPIE_BGColor = 0xFFFFFFL; +! GDCPIE_EdgeColor = GDC_NOCOLOR; /* http://bugs.debian.org/326502 */ + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; ++ GDCPIE_percent_fmt = " (%.0f%%)"; ++ GDC_image_type = GDC_GIF; + pie_gif(480, 360, pie, GDC_3DPIE, 2,names, values); + fclose(pie); + insert_img(f, "pie_most.gif"); +diff -cr openvas-client-1.0.2.orig/nessus/Makefile openvas-client-1.0.2/nessus/Makefile +*** openvas-client-1.0.2.orig/nessus/Makefile 2007-08-20 11:38:47.000000000 +0100 +--- openvas-client-1.0.2/nessus/Makefile 2007-12-28 11:25:51.000000000 +0000 +*************** +*** 1,9 **** + include ../nessus.tmpl + + GTKLIBS= $(GTKCONFIG_LIBS) +! INCLUDE = ${include} $(GTKCONFIG_CFLAGS) -I../src/gui -Igdchart0.94b -Igdchart0.94b/gd1.3 + LIBS = $(X_LIBS) $(X_CFLAGS) $(GTKLIBS) \ +! $(RUN_LIBS) $(C_R_LIB) gdchart0.94b/gd1.3/libgd.a -lm -L../libnessus -lnessus-client -lssl -lcrypto $(DL_LIB) -lz $(SOCKET_LIB) + + NESSUS_INCLUDE=`sh ./cflags` + CFLAGS+=-Wall +--- 1,9 ---- + include ../nessus.tmpl + + GTKLIBS= $(GTKCONFIG_LIBS) +! INCLUDE = ${include} $(GTKCONFIG_CFLAGS) -I../src/gui + LIBS = $(X_LIBS) $(X_CFLAGS) $(GTKLIBS) \ +! $(RUN_LIBS) $(C_R_LIB) -lgdc -lm -L../libnessus -lnessus-client -lssl -lcrypto $(DL_LIB) -lz $(SOCKET_LIB) + + NESSUS_INCLUDE=`sh ./cflags` + CFLAGS+=-Wall +*************** +*** 58,67 **** + prefs_kb.o \ + listnotebook.o \ + read_target_file.o \ +- gdchart0.94b/gdc.o \ +- gdchart0.94b/price_conv.o \ +- gdchart0.94b/gdc_pie.o \ +- gdchart0.94b/gdchart.o \ + regex.o \ + filter.o \ + dirutils.o \ +--- 58,63 ---- --- openvas-client-2.0.1.orig/debian/patches/01_libgdchart-gd2-noxpm-dev.dpatch +++ openvas-client-2.0.1/debian/patches/01_libgdchart-gd2-noxpm-dev.dpatch @@ -0,0 +1,111 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_libgdchart-gd2-noxpm-dev.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad openvas-client-2.0.1~/nessus/Makefile openvas-client-2.0.1/nessus/Makefile +--- openvas-client-2.0.1~/nessus/Makefile 2009-01-02 01:59:16.000000000 +0100 ++++ openvas-client-2.0.1/nessus/Makefile 2009-01-02 02:13:26.000000000 +0100 +@@ -3,7 +3,7 @@ + GTKLIBS= $(GTKCONFIG_LIBS) + INCLUDE = ${include} $(GTKCONFIG_CFLAGS) $(GLIB_CFLAGS) -I../src/gui -I../src/openvas-lib + LIBS = $(X_LIBS) $(X_CFLAGS) $(GTKLIBS) $(GLIB_LIBS) $(GDC_LIB) \ +- $(RUN_LIBS) $(C_R_LIB) -lm -L../libnessus -lnessus-client -lssl -lcrypto $(DL_LIB) -lz $(SOCKET_LIB) ++ $(RUN_LIBS) $(C_R_LIB) -lgdc -lm -L../libnessus -lnessus-client -lssl -lcrypto $(DL_LIB) -lz $(SOCKET_LIB) + + NESSUS_INCLUDE=`sh ./cflags` + CFLAGS+=-Wall +@@ -57,10 +57,6 @@ + prefs_kb.o \ + listnotebook.o \ + read_target_file.o \ +- gdchart0.94b/gdc.o \ +- gdchart0.94b/price_conv.o \ +- gdchart0.94b/gdc_pie.o \ +- gdchart0.94b/gdchart.o \ + regex.o \ + filter.o \ + dirutils.o \ +diff -urNad openvas-client-2.0.1~/nessus/html_graph_output.c openvas-client-2.0.1/nessus/html_graph_output.c +--- openvas-client-2.0.1~/nessus/html_graph_output.c 2009-01-02 01:59:16.000000000 +0100 ++++ openvas-client-2.0.1/nessus/html_graph_output.c 2009-01-02 02:12:30.000000000 +0100 +@@ -69,6 +69,10 @@ + #include + #include "nessus_i18n.h" + #ifndef NO_GDCHART ++#ifndef HAVE_LIBFREETYPE ++/* prevent undefined references in gdc (http://bugs.debian.org/242936) */ ++# define HAVE_LIBFREETYPE 0 ++#endif + #include + #include + #include +@@ -737,7 +741,7 @@ + GDCPIE_label_dist = 15; + GDCPIE_LineColor = 0x000000L; + GDCPIE_PlotColor = 0xC0C0C0L; +- GDCPIE_EdgeColor = 0x000000L; ++ GDCPIE_EdgeColor = GDC_NOCOLOR; /* http://bugs.debian.org/326502 */ + GDCPIE_label_size = GDC_SMALL; + GDCPIE_title_size = GDC_MEDBOLD; + GDCPIE_3d_angle = 45; +@@ -747,6 +751,7 @@ + GDC_generate_gif = TRUE; + GDC_hold_img = GDC_DESTROY_IMAGE; + GDC_image = NULL; ++ GDC_image_type = GDC_GIF; + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; + +@@ -888,9 +893,11 @@ + GDCPIE_explode = expl; + GDCPIE_Color = clr; + GDCPIE_BGColor = 0xFFFFFFL; +- GDCPIE_EdgeColor = 0x000000L; ++ GDCPIE_EdgeColor = GDC_NOCOLOR; /* http://bugs.debian.org/326502 */ + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; ++ GDCPIE_percent_fmt = " (%.0f%%)"; ++ GDC_image_type = GDC_GIF; + pie_gif(480, 360, pie, GDC_3DPIE, num_risks, lbl, risks_f); + fclose(pie); + insert_img(f, "pie_risks.gif"); +@@ -923,6 +930,7 @@ + GDC_BGColor = 0xFFFFFFL; /* backgound color (white) */ + GDC_LineColor = 0x000000L; /* line color (black) */ + GDC_SetColor = &(color); ++ GDC_image_type = GDC_GIF; + out_graph(480, 360, chart, GDC_3DBAR, num, services, 1, value); + fclose(chart); + insert_img(f, "chart_dangerous_services.gif"); +@@ -956,6 +964,7 @@ + GDC_BGColor = 0xFFFFFFL; /* backgound color (white) */ + GDC_LineColor = 0x000000L; /* line color (black) */ + GDC_SetColor = color; ++ GDC_image_type = GDC_GIF; + out_graph(480, 360, chart, GDC_3DBAR, num, services, 1, value); + fclose(chart); + insert_img(f, "chart_services_occurences.gif"); +@@ -987,6 +996,7 @@ + GDC_BGColor = 0xFFFFFFL; /* backgound color (white) */ + GDC_LineColor = 0x000000L; /* line color (black) */ + GDC_SetColor = &(color); ++ GDC_image_type = GDC_GIF; + out_graph(480, 360, chart, GDC_3DBAR, num, oses, 1, value); + fclose(chart); + insert_img(f, "chart_operating_systems.gif"); +@@ -1039,9 +1049,11 @@ + GDCPIE_explode = expl; + GDCPIE_Color = clr; + GDCPIE_BGColor = 0xFFFFFFL; +- GDCPIE_EdgeColor = 0x000000L; ++ GDCPIE_EdgeColor = GDC_NOCOLOR; /* http://bugs.debian.org/326502 */ + GDCPIE_missing = NULL; + GDCPIE_percent_labels = GDCPIE_PCT_RIGHT; ++ GDCPIE_percent_fmt = " (%.0f%%)"; ++ GDC_image_type = GDC_GIF; + pie_gif(480, 360, pie, GDC_3DPIE, 2,names, values); + fclose(pie); + insert_img(f, "pie_most.gif");