當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Asset_host::get_autodetected_name方法代碼示例

本文整理匯總了PHP中Asset_host::get_autodetected_name方法的典型用法代碼示例。如果您正苦於以下問題:PHP Asset_host::get_autodetected_name方法的具體用法?PHP Asset_host::get_autodetected_name怎麽用?PHP Asset_host::get_autodetected_name使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Asset_host的用法示例。


在下文中一共展示了Asset_host::get_autodetected_name方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _

                        $host->set_sensors($sensors);
                        $host->save_in_db($conn_aux, FALSE);
                        $hosts_in_db[$ip][$ctx] = $ip;
                        ?>
                        <script type="text/javascript">                                          
                             parent.$("#ptext").html("<?php 
                        echo _('Inserting new host') . ' <strong>' . $hostname . '</strong>';
                        ?>
");
                        </script>                                  
                        <?php 
                    } catch (Exception $e) {
                        $errors[] = $e->getMessage();
                    }
                } else {
                    $hostname = Asset_host::get_autodetected_name($ip);
                    $h_key = $ip . ';' . $ctx;
                    if (array_key_exists($h_key, $new_hosts) == FALSE) {
                        $new_hosts[$h_key] = array('hostname' => $hostname, 'ip' => $ip);
                        fputs($f, $ip . ' detected from Network ' . $net['name'] . "\n");
                    }
                }
            }
            $rs->MoveNext();
        }
    }
    $i++;
}
if ($mode == 'insert') {
    Util::disable_perm_triggers($conn_aux, FALSE);
    if (count($new_hosts) > 0) {
開發者ID:AntBean,項目名稱:alienvault-ossim,代碼行數:31,代碼來源:import_all_hosts_from_siem_ajax.php

示例2: import_assets_from_csv


//.........這裏部分代碼省略.........
            $summary['by_hosts'][$num_line]['errors']['Format'] = _('Number of fields is incorrect');
            $summary['general']['statistics']['errors']++;
            continue;
        }
        //Clean values
        $param = array();
        $index = 0;
        $max_index = count($v) - 1;
        foreach ($v as $field) {
            $parameter = trim($field);
            if ($index == 0) {
                $pattern = '/^\\"|^\'/';
                $param[] = preg_replace($pattern, '', $parameter);
            } else {
                if ($index == $max_index) {
                    $pattern = '/\\"$|\'$/';
                    $param[] = preg_replace($pattern, '', $parameter);
                } else {
                    $param[] = $parameter;
                }
            }
            $index++;
        }
        //Values
        $is_in_db = FALSE;
        $host_id = '';
        $sensors = $sensor_ids;
        $csv_ips = preg_replace("/\\s+/", '', $param[0]);
        if (!empty($param[1])) {
            $name = $param[1];
        } else {
            $aux_name = str_replace(' ', '', $csv_ips);
            $aux_name = str_replace(',', '-', $aux_name);
            $name = Asset_host::get_autodetected_name($aux_name);
        }
        if ($import_type == 'hosts') {
            $fqdns = $param[2];
            $descr = $param[3];
            $asset_value = !empty($param[4]) ? $param[4] : 2;
            if (preg_match('/Host ID/', $csv_headers[8])) {
                $os = $param[5];
                $latitude = floatval($param[6]);
                $longitude = floatval($param[7]);
                $external = empty($param[9]) ? 0 : intval($param[9]);
                $csv_devices = $param[10];
            } else {
                $os = $param[6];
                $latitude = floatval($param[7]);
                $longitude = floatval($param[8]);
                $external = 0;
                $csv_devices = '';
            }
        } else {
            $descr = $param[2];
            $os = $param[3];
            $latitude = 0;
            $longitude = 0;
            $asset_value = 2;
            $external = 0;
            $csv_devices = $param[4];
        }
        //Permissions
        $can_i_create_assets = Session::can_i_create_assets();
        $can_i_modify_ips = TRUE;
        //IPs
        if (!ossim_valid($csv_ips, OSS_IP_ADDR, 'illegal:' . _('IP'))) {
開發者ID:jackpf,項目名稱:ossim-arc,代碼行數:67,代碼來源:import_all_hosts.php


注:本文中的Asset_host::get_autodetected_name方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。