[Openvas-commits] r3473 - in trunk/openvas-plugins: . scripts
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue May 26 12:38:35 CEST 2009
Author: felix
Date: 2009-05-26 12:38:34 +0200 (Tue, 26 May 2009)
New Revision: 3473
Modified:
trunk/openvas-plugins/ChangeLog
trunk/openvas-plugins/scripts/lcdproc_detect.nasl
Log:
* scripts/lcdproc_detect.nasl:
Removed localization flags ("english"), corrected affected version
number in description text (0.4 not 4.0), improved punctuation in
description text and wording of security warning text.
Modified: trunk/openvas-plugins/ChangeLog
===================================================================
--- trunk/openvas-plugins/ChangeLog 2009-05-26 08:55:58 UTC (rev 3472)
+++ trunk/openvas-plugins/ChangeLog 2009-05-26 10:38:34 UTC (rev 3473)
@@ -1,3 +1,11 @@
+2009-05-26 Felix Wolfsteller <felix.wolfsteller at intevation.de>
+
+ * scripts/lcdproc_detect.nasl:
+ Removed localization flags ("english"), corrected affected version
+ number in description text (0.4 not 4.0), improved punctuation in
+ description text and wording of security warning text.
+
+
2009-05-25 Thomas Reinke <reinke at securityspace.com>
deb_1800_1.nasl deb_1801_1.nasl deb_1802_1.nasl deb_1802_2.nasl
deb_1803_1.nasl deb_1804_1.nasl deb_1805_1.nasl deb_1806_1.nasl
Modified: trunk/openvas-plugins/scripts/lcdproc_detect.nasl
===================================================================
--- trunk/openvas-plugins/scripts/lcdproc_detect.nasl 2009-05-26 08:55:58 UTC (rev 3472)
+++ trunk/openvas-plugins/scripts/lcdproc_detect.nasl 2009-05-26 10:38:34 UTC (rev 3473)
@@ -8,34 +8,34 @@
{
script_id(10379);
script_version ("$Revision$");
- name["english"] = "LCDproc server detection";
- script_name(english:name["english"]);
+ name = "LCDproc server detection";
+ script_name(name);
- desc["english"] = "LCDproc (http://lcdproc.omnipotent.net) is a
+ desc = "LCDproc (http://lcdproc.omnipotent.net) is a
system that is used to display system information and other data
on an LCD display (or any supported display device, including curses
-or text)
+or text).
-The LCDproc version 4.0 and above uses a client-server protocol, allowing
+The LCDproc version 0.4 and above uses a client-server protocol, allowing
anyone with access to the LCDproc server to modify the displayed content.
Risk factor : Low
Solution: Disable access to this service from outside by disabling
- access to TCP port 13666 (default port used)";
+ access to TCP port 13666 (default port used).";
- script_description(english:desc["english"]);
+ script_description(desc);
- summary["english"] = "Find the presence of LCDproc";
+ summary = "Find the presence of LCDproc";
- script_summary(english:summary["english"]);
+ script_summary(summary);
script_category(ACT_GATHER_INFO);
- script_copyright(english:"This script is Copyright (C) 2000 SecuriTeam");
- script_family(english:"Service detection");
- script_dependencie("find_service.nes");
+ script_copyright("This script is Copyright (C) 2000 SecuriTeam");
+ script_family("Service detection");
+ script_dependencie("find_service.nes");
script_require_ports("Services/lcdproc", 13666);
- exit(0);
+ exit(0);
}
#
@@ -62,9 +62,9 @@
resultrecv = resultrecv - "connect LCDproc ";
resultrecv = resultrecv - "lcd ";
- banner = "LCDproc version: ";
+ banner = "LCDproc (";
banner = banner + resultrecv;
- banner = banner + "\n";
+ banner = banner + ') was found running on the target.\n';
security_warning(port:port, data:banner);
exit(0);
Property changes on: trunk/openvas-plugins/scripts/lcdproc_detect.nasl
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Revision
More information about the Openvas-commits
mailing list