
nnposter at users
Dec 4, 2008, 8:29 AM
Post #1 of 1
(2152 views)
Permalink
|
|
Bug in hastymail_attachment_exec.nasl
|
|
There is a typo bug in script hastymail_attachment_exec.nasl. The following patch against version 1.5 resolves the issue: --- hastymail_attachment_exec.nasl.orig 2008-11-06 10:34:44.000000000 -0700 +++ hastymail_attachment_exec.nasl 2008-12-03 12:31:47.000000000 -0500 @@ -64,7 +64,7 @@ function check(loc) { r = http_send_recv3(method: "GET", item:string(loc, "/login.php"), port:port); - if (isnullr(r)) exit(0); + if (isnull(r)) exit(0); if("Hastymail" >< r[2] && egrep(pattern:"Hastymail (0\.|1\.0\.[01]|1\.1\.)", string: r[2]) ) { security_warning(port); Cheers, nnposter _______________________________________________ Plugins-writers mailing list Plugins-writers [at] list http://mail.nessus.org/mailman/listinfo/plugins-writers
|