Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Nessus-Users
[Top] [All Lists]

Re: Nessus stop by 500 open Ports

Subject: Re: Nessus stop by 500 open Ports
Date: Mon, 21 Jul 2008 08:37:35 +0200
On Sat, 19 Jul 2008 14:03:48 +0000
MALTE SIMON <malte_simon@hotmail.com> wrote:

Hello, is ther a way to stop Nessus if a Host have more then 500 open
Ports?

Write an ACT_GATHER_INFORMATION plugin which will declare the host dead if such 
thing happens.
Something like:

# Insert description...
ports = get_kb_list("Ports/tcp/*");
if (! isnull(ports) && max_index(ports) > 500)
{
  security_warning(port: 0, extra: max_index(ports), ' TCP ports are open\n');
  set_kb_item(name:"Host/dead", value:TRUE);
}
_______________________________________________
Nessus mailing list
Nessus@list.nessus.org
http://mail.nessus.org/mailman/listinfo/nessus

<Prev in Thread] Current Thread [Next in Thread>