当前位置: 首页>>代码示例>>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;未经允许,请勿转载。