[Openvas-commits] r5672 - in trunk/openvas-plugins: . scripts
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Oct 22 10:54:10 CEST 2009
Author: mime
Date: 2009-10-22 10:54:07 +0200 (Thu, 22 Oct 2009)
New Revision: 5672
Modified:
trunk/openvas-plugins/ChangeLog
trunk/openvas-plugins/scripts/blackice_dos.nasl
trunk/openvas-plugins/scripts/fw1_udp_DoS.nasl
trunk/openvas-plugins/scripts/http_trace.nasl
trunk/openvas-plugins/scripts/jolt2.nasl
trunk/openvas-plugins/scripts/kerio_PF_buffer_overflow.nasl
trunk/openvas-plugins/scripts/line_overflow.nasl
trunk/openvas-plugins/scripts/writesrv.nasl
Log:
Removed test for ACT_FLOOD
Modified: trunk/openvas-plugins/ChangeLog
===================================================================
--- trunk/openvas-plugins/ChangeLog 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/ChangeLog 2009-10-22 08:54:07 UTC (rev 5672)
@@ -1,3 +1,20 @@
+2009-10-22 Michael Meyer <michael.meyer at intevation.de>
+
+ * scripts/jolt2.nasl,
+ scripts/fw1_udp_DoS.nasl,
+ scripts/line_overflow.nasl,
+ scripts/blackice_dos.nasl:
+ Removed test for ACT_FLOOD as ACT_FLOOD is
+ available since OpenVAS 1.0.
+
+ * scripts/kerio_PF_buffer_overflow.nasl,
+ scripts/writesrv.nasl,
+ scripts/http_trace.nasl:
+ Fixed script_dependencies().
+
+ * ChangeLog:
+ Fixed Date of my last comit.
+
2009-10-21 Jan-Oliver Wagner <jan-oliver.wagner at greenbone.net>
* scripts/nmap.nasl: Replaced early exit by toolcheck method.
@@ -2,3 +19,3 @@
-2009-10-20 Michael Meyer <michael.meyer at intevation.de>
+2009-10-21 Michael Meyer <michael.meyer at intevation.de>
Modified: trunk/openvas-plugins/scripts/blackice_dos.nasl
===================================================================
--- trunk/openvas-plugins/scripts/blackice_dos.nasl 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/scripts/blackice_dos.nasl 2009-10-22 08:54:07 UTC (rev 5672)
@@ -32,10 +32,7 @@
summary = "Ping flood the remote machine and kills BlackIce";
script_summary(summary);
-
- if (ACT_FLOOD) script_category(ACT_FLOOD);
- else script_category(ACT_KILL_HOST);
-
+ script_category(ACT_FLOOD);
script_copyright("This script is Copyright (C) 2002 Michel Arboi");
family = "Denial of Service";
Modified: trunk/openvas-plugins/scripts/fw1_udp_DoS.nasl
===================================================================
--- trunk/openvas-plugins/scripts/fw1_udp_DoS.nasl 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/scripts/fw1_udp_DoS.nasl 2009-10-22 08:54:07 UTC (rev 5672)
@@ -30,10 +30,7 @@
summary = "Flood the target with incorrect UDP packets";
script_summary(summary);
-
- if (ACT_FLOOD) script_category(ACT_FLOOD);
- else script_category(ACT_KILL_HOST);
-
+ script_category(ACT_FLOOD);
script_copyright("This script is Copyright (C) 2003 Michel Arboi");
family = "Denial of Service";
script_family(family);
Modified: trunk/openvas-plugins/scripts/http_trace.nasl
===================================================================
--- trunk/openvas-plugins/scripts/http_trace.nasl 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/scripts/http_trace.nasl 2009-10-22 08:54:07 UTC (rev 5672)
@@ -34,8 +34,7 @@
script_copyright("This script is Copyright (C) 2002 Michel Arboi");
family = "General";
script_family(family);
- # script_dependencie("find_service.nes", "httpver.nasl");
- script_dependencie("find_service.nes");
+ script_dependencies("find_service.nes", "httpver.nasl");
script_require_ports("Services/www", 80);
exit(0);
}
@@ -95,8 +94,6 @@
security_note(port: port, data: r);
}
-exit(0); # broken at this time
-#
ver=get_kb_item(string("http/", port));
if ((ver == "10") || (ver == "09")) exit(0); # No TRACE in HTTP/1.0
Modified: trunk/openvas-plugins/scripts/jolt2.nasl
===================================================================
--- trunk/openvas-plugins/scripts/jolt2.nasl 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/scripts/jolt2.nasl 2009-10-22 08:54:07 UTC (rev 5672)
@@ -32,10 +32,7 @@
summary = "Floods target with incorrectly fragmented packets";
script_summary(summary);
-
- if (ACT_FLOOD) script_category(ACT_FLOOD);
- else script_category(ACT_KILL_HOST);
-
+ script_category(ACT_FLOOD);
script_copyright("This script is Copyright (C) 2003 Michel Arboi");
family = "Denial of Service";
script_family(family);
Modified: trunk/openvas-plugins/scripts/kerio_PF_buffer_overflow.nasl
===================================================================
--- trunk/openvas-plugins/scripts/kerio_PF_buffer_overflow.nasl 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/scripts/kerio_PF_buffer_overflow.nasl 2009-10-22 08:54:07 UTC (rev 5672)
@@ -46,7 +46,7 @@
script_copyright("This script is Copyright (C) 2003 Michel Arboi");
family = "Firewalls";
script_family(family);
- #script_dependencie("find_service.nes");
+ script_dependencies("find_service.nes");
script_require_ports("Services/kerio", 44334);
exit(0);
}
Modified: trunk/openvas-plugins/scripts/line_overflow.nasl
===================================================================
--- trunk/openvas-plugins/scripts/line_overflow.nasl 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/scripts/line_overflow.nasl 2009-10-22 08:54:07 UTC (rev 5672)
@@ -26,10 +26,7 @@
summary = "Crashes a service by sending a too long line";
script_summary(summary);
-
- if (ACT_FLOOD) script_category(ACT_FLOOD);
- else script_category(ACT_DENIAL);
-
+ script_category(ACT_FLOOD);
script_copyright("This script is Copyright (C) 2002 Michel Arboi");
family = "Denial of Service";
Modified: trunk/openvas-plugins/scripts/writesrv.nasl
===================================================================
--- trunk/openvas-plugins/scripts/writesrv.nasl 2009-10-22 06:36:59 UTC (rev 5671)
+++ trunk/openvas-plugins/scripts/writesrv.nasl 2009-10-22 08:54:07 UTC (rev 5672)
@@ -33,7 +33,7 @@
script_copyright("Copyright (C) 2003 Michel Arboi");
family = "Useless services";
script_family(family);
- # script_dependencies("find_service.nes");
+ script_dependencies("find_service.nes");
exit(0);
}
More information about the Openvas-commits
mailing list