diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index adae88d04e..53b1cc66f1 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2009-08-11 Miguel de Dios + + * godmode/servers/manage_recontask_form.php, + godmode/servers/manage_recontask.php, include/help/en/help_recontask.php, + operation/servers/view_server_detail.php: change strings for more easy + understand. + 2009-08-11 Miguel de Dios * godmode/agentes/configurar_agente.php: change string for more easy diff --git a/pandora_console/godmode/servers/manage_recontask.php b/pandora_console/godmode/servers/manage_recontask.php index ad9e1da23a..eaf1be3950 100644 --- a/pandora_console/godmode/servers/manage_recontask.php +++ b/pandora_console/godmode/servers/manage_recontask.php @@ -94,7 +94,7 @@ echo "

".__('Pandora servers')." » ".__('Manage recontask')."

"; $result = get_db_all_rows_in_table ("trecon_task"); $color=1; if ($result !== false) { - $table->head = array (__('Name'), __('Network'), __('Network profile'), __('Group'), __('Incident'), __('OS'), __('Interval'), __('Action')); + $table->head = array (__('Name'), __('Network'), __('Module template'), __('Group'), __('Incident'), __('OS'), __('Interval'), __('Action')); $table->align = array ("","","","center","","","center","center"); $table->width = 700; $table->cellpadding = 4; @@ -106,7 +106,7 @@ if ($result !== false) { ''.$row["name"].'', // Network (subnet) $row["subnet"], - // Network profile name + // Module template name ''.get_networkprofile_name ($row["id_network_profile"]).'', // GROUP print_group_icon ($row["id_group"], true), diff --git a/pandora_console/godmode/servers/manage_recontask_form.php b/pandora_console/godmode/servers/manage_recontask_form.php index 77bd958db4..2c95a77de2 100644 --- a/pandora_console/godmode/servers/manage_recontask_form.php +++ b/pandora_console/godmode/servers/manage_recontask_form.php @@ -88,8 +88,8 @@ $values[2592000] = __('%d month', 1); $table->data[3][0] = __('Interval'); $table->data[3][1] = print_select ($values, "interval", $interval, '', '', '', true); -// Network profile -$table->data[4][0] = __('Network profile'); +// Module template +$table->data[4][0] = __('Module template'); $table->data[4][1] = print_select_from_sql ('SELECT id_np, name FROM tnetwork_profile', "id_network_profile", $id_network_profile, '', '', '', true); diff --git a/pandora_console/include/help/en/help_recontask.php b/pandora_console/include/help/en/help_recontask.php index 9cf6a47fb6..4f3a1bf75a 100644 --- a/pandora_console/include/help/en/help_recontask.php +++ b/pandora_console/include/help/en/help_recontask.php @@ -7,5 +7,5 @@ To create a Recon Task, you must fill this form. Please fill all the fields, pay "Network" refers to the network segment, and are defined using CIDR format. For example 192.168.1.0/24 refers to all C class on 192.168.1.0, wich includes all the addresses in the scope: 192.168.1.0 - 192.168.1.255.

-"Network profile" are predefined profiles for the reconnaissance task. It will add such modules defined in the profile to the newly discovered machines in the network. +"Module template" are predefined profiles for the reconnaissance task. It will add such modules defined in the profile to the newly discovered machines in the network.

\ No newline at end of file diff --git a/pandora_console/operation/servers/view_server_detail.php b/pandora_console/operation/servers/view_server_detail.php index 46fc9eab42..a1d8c2a787 100644 --- a/pandora_console/operation/servers/view_server_detail.php +++ b/pandora_console/operation/servers/view_server_detail.php @@ -80,7 +80,7 @@ $table->align[3] = "center"; $table->head[4] = __('Status'); $table->align[4] = "center"; -$table->head[5] = __('Network profile'); +$table->head[5] = __('Module template'); $table->align[5] = "center"; $table->head[6] = __('Group');