On Mon Mar 28 2005 at 12:03, Senthil Prabu.S wrote:

> I started Nessus in GUI, disabled all plugins, except nmap.nasl. And I
> got only this message in my hmtl report "No noticeable information
> found".

Try the attached patch (and please tell us if it worked)
If it keeps failing, a work around is to run nmap alone, saving the
results with -oG, then let Nessus read the file.

RCS file: /usr/local/cvs/nessus-libraries/libnessus/popen.c,v
retrieving revision 1.15
diff -c -r1.15 popen.c
*** popen.c	27 Dec 2004 17:31:18 -0000	1.15
--- popen.c	28 Mar 2005 20:37:48 -0000
***************
*** 89,96 ****
  	  if (nice(inice) < 0 && errno)
  	    perror("nice");
  	}
!       /* Memory usage: unlimited */
!       rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
  #ifdef RLIMIT_DATA
        if (setrlimit(RLIMIT_DATA, &rl) < 0) perror("RLIMIT_DATA");
  #endif
--- 89,96 ----
  	  if (nice(inice) < 0 && errno)
  	    perror("nice");
  	}
!       /* Memory usage: 1 GB, as HP/UX does not like "RLIM_INFINITY" */
!       rl.rlim_cur = rl.rlim_max = 0x10000000;
  #ifdef RLIMIT_DATA
        if (setrlimit(RLIMIT_DATA, &rl) < 0) perror("RLIMIT_DATA");
  #endif
_______________________________________________
Nessus mailing list
[email protected]
http://mail.nessus.org/mailman/listinfo/nessus

Reply via email to