Re: [Openvas-discuss] use omp with java

2014-11-24 Thread Dustin Demuth

Am 24.11.2014 um 13:07 schrieb paky...@libero.it:
 Where is the problem?
 Any ideas?

Hi,

I'm not sure about this, but does processbuilder know the path to omp?

Have you tried to use sth. like:

String cmd = \usr\bin\omp -u admin -w admin -h 192.168.1.29 --get-targets;



BR.

Dustin

___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss


Re: [Openvas-discuss] Missing openvasad

2014-11-19 Thread Dustin Demuth
Hello,

Am 18.11.2014 um 20:23 schrieb Eigen Heald:
 Hello;
 Since performing a recent nvt sync, I am no longer able to log into the web 
 interface. openvasad was removed from the installation, so I cannot add or 
 change users.
 

In recent versions the openvas-administrator was merged with
opnenvas-manager.

You should be capable of adding users when runnning:

openvasmd --create-user=username

See Documentation:
http://www.openvas.org/src-doc/openvas-manager-5.0.4/index.html

BR

Dustin




signature.asc
Description: OpenPGP digital signature
___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss

Re: [Openvas-discuss] Openvas 7 on Centos7

2014-10-16 Thread Dustin Demuth
Am 16.10.2014 um 03:06 schrieb Sec DevOps:
 Hi 
 
 Has anyone been able to get Openvas7 running on Centos7? 

Yes, everything but the PDF-Generation worked out of the box on my
CentOS 7 machine,

If I understood it right, the Administrator was merged into the manager.
This might explain why Step 3 fails.



BR

Dustin



signature.asc
Description: OpenPGP digital signature
___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss

Re: [Openvas-discuss] PDF report not working... (zero bytes)

2014-09-29 Thread Dustin Demuth

Hi Rainer,

Am 24.09.2014 um 16:05 schrieb Rainer Sokoll:
 
 yum install texlive-collection-latexextra
 


do you also know which latex packages are needed on centos 7?

It seems that texlive-collection-latexextra is currently not available
as a package

yum search texlive-collection-latexextra
 No matches found


Best Regards

Dustin

___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss


Re: [Openvas-discuss] libopenvas_misc.so.7 error

2014-09-19 Thread Dustin Demuth
Am 19.09.2014 um 08:42 schrieb paky...@libero.it:
 To install the components I have executed, for every component of
 openVAS, the command cmake .. in the build folder and later I have
 executed the commands make and make install
 
 I have seen that the file libopenvas_misc.so.7 is present in the path
 /home/pasquale/Scrivania/openVAS/openvas-libraries/build/misc
 


I'm not sure if my answer is correct, or even the correct approach to
fix this. I also don't know if there are any side-effects to it. So I
won't take any responsibilities if something is messed up.


Have you already installed openvas or did you just compile it?

you could run

  cpack -G RPM

to create a RPM-Package and install this package afterwards.
Inspect your selfmade rpm file to find out which paths the package will
be installed to.

Now Install with:

  rpm --install PACKAGENAME.rpm


After installation you should find openvas in /usr/local/share (or
something like this should be the paths which where shown during
inspection).


As this folder should be a part of openSUSEs path-variable the library
libopenvas_misc.so.7 should be found.


I don't know if this approach is secure / safe. But it might work.

BR

Dustin



signature.asc
Description: OpenPGP digital signature
___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss

Re: [Openvas-discuss] (no subject)

2014-09-18 Thread Dustin Demuth
Hi Pasquale

Am 17.09.2014 um 17:42 schrieb paky...@libero.it: Hi all,

 I have seen in the install.txt file that to remove this problem i have to
 perform the command with the option -DIGNORE_UNPROTOTYPED_CALLS=1.

I had the same problems on openSUSE

Find the file CMakeLists.txt

Now look for the line:
set (CMAKE_C_FLAGS  ${CMAKE_C_FLAGS} ${HARDENING_FLAGS}
-Wall -D_BSD_SOURCE -D_ISOC99_SOURCE -D_SVID_SOURCE -D_FILE_OFFSET_BITS=64)

replace it with the following one, or add -Wno-error=unprototyped-calls
to the line:

set (CMAKE_C_FLAGS  ${CMAKE_C_FLAGS} ${HARDENING_FLAGS}
-Wall  -Wno-error=unprototyped-calls -D_BSD_SOURCE -D_ISOC99_SOURCE
-D_SVID_SOURCE -D_FILE_OFFSET_BITS=64)


This should silence the warnings and the code should compile.

BR

Dustin



signature.asc
Description: OpenPGP digital signature
___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss

Re: [Openvas-discuss] cpack as rpm of openvassd fails due to a file not found exception

2014-09-08 Thread Dustin Demuth
Am 03.09.2014 um 13:01 schrieb Dustin Demuth:
 I retried today with TRUNK which also worked fine for me.
 I'll give it a closer look next week and report to the list.


I tried it again with 7.0.3 somehow it's working now.

As I have installed some updates for openSUSE maybe that fixed the problem.

BR

Dustin
___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss


Re: [Openvas-discuss] cpack as rpm of openvassd fails due to a file not found exception

2014-09-03 Thread Dustin Demuth

 Running cpack -G RPM -V in my build directory in trunk shows no error
 and produces a rpm package.
 I am not a packaging expert thoug, perhaps others here have an idea.


On which distribution have you tried building?
I was trying to build on a Opensuse.

I retried today with TRUNK which also worked fine for me.
I'll give it a closer look next week and report to the list.


BR

Dustin
___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss


[Openvas-discuss] cpack as rpm of openvassd fails due to a file not found exception

2014-08-18 Thread Dustin Demuth
Dear all,

After building openvassd, I'm trying to create a rpm for
openvas-scanner-release-4.0.2, with cpack -G RPM.
Unfortunately the process fails, as the man-pages are renamed/converted
to *.8.gz and cpack can not find the original file anymore (see verbose
output of cpack below). The files seem to be generated on the fly by
cpack, so renaming them had no effect.

So I have two questions:
a) What do I have to change to include the generated *.8.gz files into
the rpm instead of the *.8 files?

b) Or alternatively to a), How can cpack be told not to compress/rename
the *.8 files?



Best Regards

Dustin


build@linux-xr2i:~/openvas/openvassd/openvas-scanner-release-4.0.2
cpack -G RPM -V
CPack: Enable Verbose
CPack Verbose: Read CPack config file:
CPack Verbose: Read CPack configuration file:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/CPackConfig.cmake
CPack Verbose: Specified generator: RPM
CPack Verbose: Use generator: cmCPackRPMGenerator
CPack Verbose: For project: openvas-scanner
CPack: Create package using RPM
CPack Verbose: Read description file:
/usr/share/cmake/Templates/CPack.GenericDescription.txt
CPack Verbose: [RPM] requested component grouping = ONE_PER_GROUP
CPack Verbose: Remove toplevel directory:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM
CPack: Install projects
CPack: - Run preinstall target for: openvas-scanner
CPack: - Install project: openvas-scanner
CPack Verbose: Install configuration: „Debug
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/sbin/openvassd
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/sbin/openvas-mkcert
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/sbin/openvas-mkcert-client
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/sbin/openvas-nvt-sync
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/sbin/greenbone-nvt-sync
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/share/man/man8/openvassd.8
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/share/man/man8/openvas-mkcert.8
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/share/man/man8/openvas-nvt-sync.8
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/share/man/man8/greenbone-nvt-sync.8
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/var/lib/openvas/plugins
CPack Verbose: Installing:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/var/cache/openvas
CPack: Create package
CPack Verbose: Package files to:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM/openvas-scanner-4.0.2.rpm
CPackRPM: Will use GENERATED spec file:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM/SPECS/openvas-scanner.spec
CPackRPM:Debug: You may consult rpmbuild logs in:
CPackRPM:Debug:-
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM/rpmbuild.err
CPackRPM:Debug: *** + umask 022
+ cd
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM/BUILD
+ mv
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM/tmpBBroot
+ exit 0
+ umask 022
+ cd
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM/BUILD
+ ‚[‚ -e
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2
‘]'
+ mv
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages//RPM/tmpBBroot
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2
+ /usr/lib/rpm/brp-compress
+ /usr/lib/rpm/brp-suse
error: File not found:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/share/man/man8/openvassd.8
error: File not found:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/share/man/man8/openvas-mkcert.8
error: File not found:
/home/build/openvas/openvassd/openvas-scanner-release-4.0.2/_CPack_Packages/RPM/openvas-scanner-4.0.2/usr/share/man/man8/openvas-nvt-sync.8
error: File 

Re: [Openvas-discuss] OpenVAS on ESX(i)

2014-08-18 Thread Dustin Demuth
Hi,

Am 18.08.2014 um 10:39 schrieb Reindl Harald:
 Am 18.08.2014 um 09:24 schrieb Helmut Koers:
 anyone out there with experience setting up and running OpenVAS in an 
 ESX(i) environment?


Yes, we are doing so. But right now, OpenVAS is only used occasionally.

 I am about to set it up and do appreciate any issues and/or 
 recommendations that are known already
 
 there is no difference if you have running software
 on ESXi or bare metal - otherwise large companies
 would not run Tier 3 infrastructure on vSphere

I can confirm Haralds position. We currently can't see any problems.


BR

Dustin
___
Openvas-discuss mailing list
Openvas-discuss@wald.intevation.org
https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss