[Openvas-commits] r10604 - in trunk/openvas-plugins: . scripts

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Mar 21 16:56:47 CET 2011


Author: hdoreau
Date: 2011-03-21 16:56:44 +0100 (Mon, 21 Mar 2011)
New Revision: 10604

Modified:
   trunk/openvas-plugins/ChangeLog
   trunk/openvas-plugins/scripts/fs_policy_manager_7_dos.nasl
   trunk/openvas-plugins/scripts/gb_awstats_45123.nasl
   trunk/openvas-plugins/scripts/gb_coldfusion_42342.nasl
   trunk/openvas-plugins/scripts/gb_nginx_40760.nasl
   trunk/openvas-plugins/scripts/gb_podcast_generator_41473.nasl
   trunk/openvas-plugins/scripts/gb_snortreport_cmd_exec_09_10.nasl
   trunk/openvas-plugins/scripts/http_keepalive.inc
   trunk/openvas-plugins/scripts/quicksilver_forums_32452.nasl
   trunk/openvas-plugins/scripts/remote-detect-WindowsSharepointServices.nasl
   trunk/openvas-plugins/scripts/vmware_36842_remote.nasl
Log:
* scripts/gb_awstats_45123.nasl,
scripts/http_keepalive.inc,
scripts/gb_coldfusion_42342.nasl,
scripts/quicksilver_forums_32452.nasl,
scripts/vmware_36842_remote.nasl,
scripts/gb_podcast_generator_41473.nasl,
scripts/gb_snortreport_cmd_exec_09_10.nasl,
scripts/remote-detect-WindowsSharepointServices.nasl,
scripts/fs_policy_manager_7_dos.nasl,
scripts/gb_nginx_40760.nasl:
Fixed double inclusion problem due to the use of host_details.inc in
http_keepalive.inc


Modified: trunk/openvas-plugins/ChangeLog
===================================================================
--- trunk/openvas-plugins/ChangeLog	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/ChangeLog	2011-03-21 15:56:44 UTC (rev 10604)
@@ -1,5 +1,20 @@
 2011-03-21  Henri Doreau <henri.doreau at greenbone.net>
 
+	* scripts/gb_awstats_45123.nasl,
+	scripts/http_keepalive.inc,
+	scripts/gb_coldfusion_42342.nasl,
+	scripts/quicksilver_forums_32452.nasl,
+	scripts/vmware_36842_remote.nasl,
+	scripts/gb_podcast_generator_41473.nasl,
+	scripts/gb_snortreport_cmd_exec_09_10.nasl,
+	scripts/remote-detect-WindowsSharepointServices.nasl,
+	scripts/fs_policy_manager_7_dos.nasl,
+	scripts/gb_nginx_40760.nasl:
+	Fixed double inclusion problem due to the use of host_details.inc in
+	http_keepalive.inc
+
+2011-03-21  Henri Doreau <henri.doreau at greenbone.net>
+
 	* scripts/host_details.inc: fix naming inconsistency.
 
 2011-03-21  Henri Doreau <henri.doreau at greenbone.net>

Modified: trunk/openvas-plugins/scripts/fs_policy_manager_7_dos.nasl
===================================================================
--- trunk/openvas-plugins/scripts/fs_policy_manager_7_dos.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/fs_policy_manager_7_dos.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -56,8 +56,8 @@
 }
 
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
-include("host_details.inc");
 
 if (host_runs("Windows") != "no") exit(0);
 

Modified: trunk/openvas-plugins/scripts/gb_awstats_45123.nasl
===================================================================
--- trunk/openvas-plugins/scripts/gb_awstats_45123.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/gb_awstats_45123.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -64,9 +64,9 @@
 }
 
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
 include("version_func.inc");
-include("host_details.inc");
 
 port = get_http_port(default:80);
 if(!get_port_state(port))exit(0);

Modified: trunk/openvas-plugins/scripts/gb_coldfusion_42342.nasl
===================================================================
--- trunk/openvas-plugins/scripts/gb_coldfusion_42342.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/gb_coldfusion_42342.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -66,9 +66,9 @@
 }
 
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
 include("version_func.inc");
-include("host_details.inc");
 
 port = get_http_port(default:80);
 if(!get_port_state(port))exit(0);

Modified: trunk/openvas-plugins/scripts/gb_nginx_40760.nasl
===================================================================
--- trunk/openvas-plugins/scripts/gb_nginx_40760.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/gb_nginx_40760.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -62,9 +62,9 @@
 }
 
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
 include("version_func.inc");
-include("host_details.inc");
 
 port = get_http_port(default:8000);
 if(!get_port_state(port))exit(0);

Modified: trunk/openvas-plugins/scripts/gb_podcast_generator_41473.nasl
===================================================================
--- trunk/openvas-plugins/scripts/gb_podcast_generator_41473.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/gb_podcast_generator_41473.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -60,9 +60,9 @@
 }
 
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
 include("version_func.inc");
-include("host_details.inc");
 
 if (host_runs("windows") == "no") exit(0);
 

Modified: trunk/openvas-plugins/scripts/gb_snortreport_cmd_exec_09_10.nasl
===================================================================
--- trunk/openvas-plugins/scripts/gb_snortreport_cmd_exec_09_10.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/gb_snortreport_cmd_exec_09_10.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -52,8 +52,8 @@
 
 include("http_func.inc");
 include("version_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
-include("host_details.inc");
    
 port = get_http_port(default:80);
 

Modified: trunk/openvas-plugins/scripts/http_keepalive.inc
===================================================================
--- trunk/openvas-plugins/scripts/http_keepalive.inc	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/http_keepalive.inc	2011-03-21 15:56:44 UTC (rev 10604)
@@ -12,8 +12,6 @@
 # using this file.
 #
 
-include("host_details.inc");
-
 global_var __ka_socket, __ka_port, __ka_enabled, __ka_last_request;
 
 __ka_socket = 0;

Modified: trunk/openvas-plugins/scripts/quicksilver_forums_32452.nasl
===================================================================
--- trunk/openvas-plugins/scripts/quicksilver_forums_32452.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/quicksilver_forums_32452.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -72,9 +72,9 @@
 }
 
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
 include("version_func.inc");
-include("host_details.inc");
 
 if (host_runs("windows") != "yes") exit(0);
 

Modified: trunk/openvas-plugins/scripts/remote-detect-WindowsSharepointServices.nasl
===================================================================
--- trunk/openvas-plugins/scripts/remote-detect-WindowsSharepointServices.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/remote-detect-WindowsSharepointServices.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -70,8 +70,8 @@
 
 include("misc_func.inc");
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
-include("host_details.inc");
 
 
 port = get_http_port(default:80);

Modified: trunk/openvas-plugins/scripts/vmware_36842_remote.nasl
===================================================================
--- trunk/openvas-plugins/scripts/vmware_36842_remote.nasl	2011-03-21 15:53:08 UTC (rev 10603)
+++ trunk/openvas-plugins/scripts/vmware_36842_remote.nasl	2011-03-21 15:56:44 UTC (rev 10604)
@@ -80,8 +80,8 @@
 }
 
 include("http_func.inc");
+include("host_details.inc");
 include("http_keepalive.inc");
-include("host_details.inc");
 
 if (host_runs("windows") == "yes") exit(0); # only vmware running under linux is affected
 



More information about the Openvas-commits mailing list