On Fri Aug 27 2004 at 17:56, Hemsley, Trevor wrote:

> The problem with this test is that it alerts if it finds anything
> listening on port 7100 if it is run in safe checks mode.

The "unsafe" part is disabled currently. Maybe we should enable it
again.
And for the safe part, maybe something with "report paranoia". 

So I suggest this patch:

--- nessus-plugins/scripts/xfs_overflow.nasl	27 Aug 2004 15:20:55 -0000	1.6
+++ nessus-plugins/scripts/xfs_overflow.nasl	14 Sep 2004 05:54:36 -0000
@@ -55,6 +55,7 @@
 
 include("misc_func.inc");
 include("solaris.inc");
+include("global_settings.inc");
 
 if ( get_kb_item("BID-6241") ) exit(0);
 version = get_kb_item("Host/Solaris/Version");
@@ -76,8 +77,9 @@
 
 port = 7100;
 
-if(1) # safe_checks()
+if(safe_checks())
 {
+ if (report_paranoia < 1) exit(0);	# No FP
  if(get_port_state(port))
  {
   soc = open_sock_tcp(port);
_______________________________________________
Nessus mailing list
[EMAIL PROTECTED]
http://mail.nessus.org/mailman/listinfo/nessus

Reply via email to