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


PHP Asset_host::get_ips_by_name方法代碼示例

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


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

示例1: unset

if (preg_match("/^[A-F0-9]{32}\$/i", $_GET["sensor"])) {
    $_GET["ctx"] = $_GET["sensor"];
    unset($_GET["sensor"]);
}
// ********* IP and Host Searches ***********
if ($_GET["search_str"] == "search term") {
    unset($_GET["search_str"]);
}
$ips_submit = array(_("Src or Dst IP"), _("Src IP"), _("Dst IP"));
$host_submit = array(_("Src or Dst Host"), _("Src Host"), _("Dst Host"));
// Conversion: Searching by hostname, but IP selected
if ($_GET["search_str"] != "" && in_array($_GET["submit"], $ips_submit) && !preg_match("/\\d+\\.\\d+\\.\\d+\\.\\d+/", $_GET["search_str"])) {
    $negated_op = preg_match('/^\\!/', $_GET["search_str"]) ? '!' : '';
    $_GET["search_str"] = Util::htmlentities(preg_replace("/[^0-9A-Za-z\\!\\-\\_\\.]/", "", $_GET["search_str"]));
    // htmlentities for fortify test
    $_ips_aux = Asset_host::get_ips_by_name($conn_aux, $_GET["search_str"]);
    $_GET["search_str"] = $negated_op . implode(" OR {$negated_op}", array_keys($_ips_aux));
}
// Conversion: Searching by IP, but Host selected
if ($_GET["search_str"] != "" && in_array($_GET["submit"], $host_submit) && preg_match("/^\\!?\\d+\\.\\d+\\.\\d+\\.\\d+\$/", $_GET["search_str"])) {
    $_GET['submit'] = str_replace(" Host", " IP", $_GET['submit']);
}
// Hostname
if ($_GET["search_str"] != "" && in_array($_GET["submit"], $host_submit) && !preg_match("/\\d+\\.\\d+\\.\\d+\\.\\d+/", $_GET["search_str"])) {
    $negated_op = preg_match('/^\\!/', $_GET["search_str"]) ? 'NOT IN' : 'IN';
    $_GET["search_str"] = Util::htmlentities(preg_replace("/[^0-9A-Za-z\\!\\-\\_\\.]/", "", $_GET["search_str"]));
    // htmlentities for fortify test
    $hids = Asset_host::get_id_by_name($conn_aux, $_GET["search_str"]);
    $htype = $_GET["submit"] == _("Src or Dst Host") ? "both" : ($_GET["submit"] == _("Src Host") ? "src" : "dst");
    $_SESSION["hostid"] = array(array_shift(array_keys($hids)), $_GET["search_str"], $htype, $negated_op);
    unset($_GET["search_str"]);
開發者ID:AntBean,項目名稱:alienvault-ossim,代碼行數:31,代碼來源:vars_session.php

示例2: ossim_get_error

 if (ossim_error()) {
     $info_error[] = ossim_get_error();
     ossim_clean_error();
 }
 // Destinations
 if ($dst != '') {
     $all_destinations = explode("\n", $dst);
     $tdestinations = array();
     // sources for tshark
     foreach ($all_destinations as $destination) {
         $destination = trim($destination);
         $destination_type = NULL;
         if (ossim_error() == FALSE) {
             if (!preg_match("/\\//", $destination)) {
                 if (!preg_match('/^(\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+)$/', $destination)) {
                     $ips = @array_keys(Asset_host::get_ips_by_name($dbconn, $destination));
                     $destination = count($ips) > 0 ? $ips[0] : '';
                 }
                 // resolve to ip
                 ossim_valid($destination, OSS_IP_ADDR, 'illegal:' . _('Destination ip'));
                 $destination_type = 'host';
             } else {
                 ossim_valid($destination, OSS_IP_CIDR, 'illegal:' . _('Destination cidr'));
                 $destination_type = 'net';
             }
         }
         if (ossim_error()) {
             $info_error[] = ossim_get_error();
             ossim_clean_error();
         } else {
             $tdestinations[] = $destination;
開發者ID:AntBean,項目名稱:alienvault-ossim,代碼行數:31,代碼來源:manage_scans.php


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