Mailing List Archive

pptp_detect.nasl
Script 10622 (pptp_detect.nasl) reports its results against "general/tcp" rather than "1723/tcp".

The error appears to be in the final line of the script.
Currently this reads
security_note(port:port, data:report);
However, the variable "port" is never assigned a value.
Throughout the script the literal 1723 is used rather than a variable.
Thus, to match the rest of the script, the final line should be
security_note(port:1723, data:report);


_______________________________________________
Plugins-writers mailing list
Plugins-writers@list.nessus.org
http://mail.nessus.org/mailman/listinfo/plugins-writers
Re: pptp_detect.nasl [ In reply to ]
Dennis Jackson wrote:

>Script 10622 (pptp_detect.nasl) reports its results against "general/tcp" rather than "1723/tcp".
>
>The error appears to be in the final line of the script.
>Currently this reads
> security_note(port:port, data:report);
>However, the variable "port" is never assigned a value.
>Throughout the script the literal 1723 is used rather than a variable.
>Thus, to match the rest of the script, the final line should be
> security_note(port:1723, data:report);
>
>
>_______________________________________________
>Plugins-writers mailing list
>Plugins-writers@list.nessus.org
>http://mail.nessus.org/mailman/listinfo/plugins-writers
>
>
>

Thanks. got it.

John
_______________________________________________
Plugins-writers mailing list
Plugins-writers@list.nessus.org
http://mail.nessus.org/mailman/listinfo/plugins-writers