• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP match_cidr函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中match_cidr函数的典型用法代码示例。如果您正苦于以下问题:PHP match_cidr函数的具体用法?PHP match_cidr怎么用?PHP match_cidr使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了match_cidr函数的18个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: bb2_yahoo

function bb2_yahoo($package)
{
    if (match_cidr($package['ip'], array("202.160.176.0/20", "67.195.0.0/16", "203.209.252.0/24", "72.30.0.0/16", "98.136.0.0/14", "74.6.0.0/16")) === FALSE) {
        return "71436a15";
    }
    return false;
}
开发者ID:splitbrain,项目名称:dokuwiki-plugin-badbehaviour,代码行数:7,代码来源:yahoo.inc.php


示例2: bb2_msnbot

function bb2_msnbot($package)
{
    if (match_cidr($package['ip'], array("207.46.0.0/16", "65.52.0.0/14", "207.68.128.0/18", "207.68.192.0/20", "64.4.0.0/18", "157.54.0.0/15", "157.60.0.0/16", "157.56.0.0/14", "199.30.16.0/20", "131.253.24.0/21", "131.253.21.0/24", "131.253.22.0/23", "131.253.32.0/20")) === FALSE) {
        return "e4de0453";
    }
    return false;
}
开发者ID:NewRoute,项目名称:glfusion,代码行数:7,代码来源:msnbot.inc.php


示例3: bb2_msnbot

function bb2_msnbot($package)
{
    if (match_cidr($package['ip'], "207.46.0.0/16") === FALSE && match_cidr($package['ip'], "65.52.0.0/14") === FALSE && match_cidr($package['ip'], "207.68.128.0/18") === FALSE && match_cidr($package['ip'], "207.68.192.0/20") === FALSE && match_cidr($package['ip'], "64.4.0.0/18") === FALSE) {
        return "e4de0453";
    }
    return false;
}
开发者ID:joseph-mudloff,项目名称:pixie-cms,代码行数:7,代码来源:msnbot.inc.php


示例4: bb2_google

function bb2_google($package)
{
    if (match_cidr($package['ip'], "66.249.64.0/19") === FALSE && match_cidr($package['ip'], "64.233.160.0/19") === FALSE) {
        return "f1182195";
    }
    return false;
}
开发者ID:kldeepak,项目名称:swara,代码行数:7,代码来源:google.inc.php


示例5: bb2_whitelist

function bb2_whitelist($package)
{
    $whitelists = @parse_ini_file(dirname(BB2_CORE) . "/whitelist.ini");
    if (@(!empty($whitelists['ip']))) {
        foreach ($whitelists['ip'] as $range) {
            if (match_cidr($package['ip'], $range)) {
                return true;
            }
        }
    }
    if (@(!empty($whitelists['useragent']))) {
        foreach ($whitelists['useragent'] as $user_agent) {
            if (!strcmp($package['headers_mixed']['User-Agent'], $user_agent)) {
                return true;
            }
        }
    }
    if (@(!empty($whitelists['url']))) {
        if (strpos($package['request_uri'], "?") === FALSE) {
            $request_uri = $package['request_uri'];
        } else {
            $request_uri = substr($package['request_uri'], 0, strpos($package['request_uri'], "?"));
        }
        foreach ($whitelists['url'] as $url) {
            if (!strcmp($request_uri, $url)) {
                return true;
            }
        }
    }
    return false;
}
开发者ID:joseph-mudloff,项目名称:pixie-cms,代码行数:31,代码来源:whitelist.inc.php


示例6: bb2_reverse_proxy

function bb2_reverse_proxy($settings, $headers_mixed)
{
    # Detect if option is on when it should be off
    $header = uc_all($settings['reverse_proxy_header']);
    if (!array_key_exists($header, $headers_mixed)) {
        return false;
    }
    $addrs = @array_reverse(preg_split("/[\\s,]+/", $headers_mixed[$header]));
    # Skip our known reverse proxies and private addresses
    if (!empty($settings['reverse_proxy_addresses'])) {
        foreach ($addrs as $addr) {
            if (!match_cidr($addr, $settings['reverse_proxy_addresses']) && !is_rfc1918($addr)) {
                return $addr;
            }
        }
    } else {
        foreach ($addrs as $addr) {
            if (!is_rfc1918($addr)) {
                return $addr;
            }
        }
    }
    # If we got here, someone is playing a trick on us.
    return false;
}
开发者ID:RoadrunnerWMC,项目名称:ABXD-plugins,代码行数:25,代码来源:core.inc.php


示例7: bb2_google

function bb2_google($package)
{
    if (match_cidr($package['ip'], "66.249.64.0/19") === FALSE && match_cidr($package['ip'], "64.233.160.0/19") === FALSE && match_cidr($package['ip'], "72.14.192.0/18") === FALSE && match_cidr($package['ip'], "203.208.32.0/19") === FALSE && match_cidr($package['ip'], "74.125.0.0/16") === FALSE && match_cidr($package['ip'], "216.239.32.0/19") === FALSE && match_cidr($package['ip'], "209.85.128.0/17") === FALSE) {
        return "f1182195";
    }
    return false;
}
开发者ID:splitbrain,项目名称:dokuwiki-plugin-badbehaviour,代码行数:7,代码来源:google.inc.php


示例8: bb2_whitelist

function bb2_whitelist($package)
{
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Inappropriate whitelisting WILL expose you to spam, or cause Bad
    // Behavior to stop functioning entirely!  DO NOT WHITELIST unless you
    // are 100% CERTAIN that you should.
    // IP address ranges use the CIDR format.
    // Includes four examples of whitelisting by IP address and netblock.
    $bb2_whitelist_ip_ranges = array("64.191.203.34", "208.67.217.130", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16");
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Inappropriate whitelisting WILL expose you to spam, or cause Bad
    // Behavior to stop functioning entirely!  DO NOT WHITELIST unless you
    // are 100% CERTAIN that you should.
    // You should not whitelist search engines by user agent. Use the IP
    // netblock for the search engine instead. See http://whois.arin.net/
    // to locate the netblocks for an IP.
    // User agents are matched by exact match only.
    // Includes one example of whitelisting by user agent.
    // All are commented out.
    $bb2_whitelist_user_agents = array();
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Inappropriate whitelisting WILL expose you to spam, or cause Bad
    // Behavior to stop functioning entirely!  DO NOT WHITELIST unless you
    // are 100% CERTAIN that you should.
    // URLs are matched from the first / after the server name up to,
    // but not including, the ? (if any).
    // Includes two examples of whitelisting by URL.
    $bb2_whitelist_urls = array();
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Do not edit below this line
    if (!empty($bb2_whitelist_ip_ranges)) {
        foreach ($bb2_whitelist_ip_ranges as $range) {
            if (match_cidr($package['ip'], $range)) {
                return true;
            }
        }
    }
    if (!empty($bb2_whitelist_user_agents)) {
        foreach ($bb2_whitelist_user_agents as $user_agent) {
            if (!strcmp($package['headers_mixed']['User-Agent'], $user_agent)) {
                return true;
            }
        }
    }
    if (!empty($bb2_whitelist_urls)) {
        if (strpos($package['request_uri'], "?") === FALSE) {
            $request_uri = $package['request_uri'];
        } else {
            $request_uri = substr($package['request_uri'], 0, strpos($package['request_uri'], "?"));
        }
        foreach ($bb2_whitelist_urls as $url) {
            if (!strcmp($request_uri, $url)) {
                return true;
            }
        }
    }
    return false;
}
开发者ID:spacequad,项目名称:glfusion,代码行数:58,代码来源:whitelist.inc.php


示例9: bb2_konqueror

function bb2_konqueror($package)
{
    // CafeKelsa is a dev project at Yahoo which indexes job listings for
    // Yahoo! HotJobs. It identifies as Konqueror so we skip these checks.
    if (stripos($package['headers_mixed']['User-Agent'], "YahooSeeker/CafeKelsa") === FALSE || match_cidr($package['ip'], "209.73.160.0/19") === FALSE) {
        if (!array_key_exists('Accept', $package['headers_mixed'])) {
            return "17566707";
        }
    }
    return false;
}
开发者ID:KeiroD,项目名称:Elkarte,代码行数:11,代码来源:browser.inc.php


示例10: bb2_yahoo

function bb2_yahoo($package)
{
    if (match_cidr($package['ip'], array("202.160.176.0/20", "67.195.0.0/16", "203.209.252.0/24", "72.30.0.0/16", "98.136.0.0/14", "74.6.0.0/16")) === FALSE) {
        return '71436a15';
    }
    #	Disabled due to http://bugs.php.net/bug.php?id=53092
    #	if (!bb2_roundtripdns($package['ip'], "crawl.yahoo.net")) {
    #		return "71436a15";
    #	}
    return false;
}
开发者ID:nealpoole,项目名称:fluxbb-bad-behavior,代码行数:11,代码来源:searchengine.inc.php


示例11: bb2_baidu

function bb2_baidu($package)
{
    if (@is_ipv6($package['ip'])) {
        return false;
    }
    # TODO
    if (match_cidr($package['ip'], array("119.63.192.0/21", "123.125.71.0/24", "180.76.0.0/16", "220.181.0.0/16")) === FALSE) {
        return false;
        # Soft fail, must pass other screening
    }
    return 1;
    # Real Baidu bot; bypass all other checks
}
开发者ID:KeiroD,项目名称:Elkarte,代码行数:13,代码来源:searchengine.inc.php


示例12: match_cidr

function match_cidr($addr, $cidr)
{
    $output = false;
    if (is_array($cidr)) {
        foreach ($cidr as $cidrlet) {
            if (match_cidr($addr, $cidrlet)) {
                $output = true;
            }
        }
    } else {
        list($ip, $mask) = explode('/', $cidr);
        $mask = 4294967295.0 << 32 - $mask;
        $output = (ip2long($addr) & $mask) == (ip2long($ip) & $mask);
    }
    return $output;
}
开发者ID:BackupTheBerlios,项目名称:openzaurus-svn,代码行数:16,代码来源:functions.inc.php


示例13: match_cidr

function match_cidr($addr, $cidr)
{
    $output = false;
    if (is_array($cidr)) {
        foreach ($cidr as $cidrlet) {
            if (match_cidr($addr, $cidrlet)) {
                $output = true;
            }
        }
    } else {
        @(list($ip, $mask) = explode('/', $cidr));
        if (!$mask) {
            $mask = 32;
        }
        $mask = pow(2, 32) - pow(2, 32 - $mask);
        $output = (ip2long($addr) & $mask) == (ip2long($ip) & $mask);
    }
    return $output;
}
开发者ID:joseph-mudloff,项目名称:pixie-cms,代码行数:19,代码来源:functions.inc.php


示例14: bb2_whitelist

function bb2_whitelist($package)
{
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Inappropriate whitelisting WILL expose you to spam, or cause Bad
    // Behavior to stop functioning entirely!  DO NOT WHITELIST unless you
    // are 100% CERTAIN that you should.
    // IP address ranges use the CIDR format.
    // check for override file and use that to allow for customization for local setup
    if (file_exists(BADBEHAVIOR_PKG_PATH . 'whitelist_config_inc.php')) {
        include_once BADBEHAVIOR_PKG_PATH . 'whitelist_config_inc.php';
    } else {
        // Includes four examples of whitelisting by IP address and netblock.
        $bb2_whitelist_ip_ranges = array("64.191.203.34", "208.67.217.130", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16");
    }
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Inappropriate whitelisting WILL expose you to spam, or cause Bad
    // Behavior to stop functioning entirely!  DO NOT WHITELIST unless you
    // are 100% CERTAIN that you should.
    // You should not whitelist search engines by user agent. Use the IP
    // netblock for the search engine instead. See http://whois.arin.net/
    // to locate the netblocks for an IP.
    // User agents are matched by exact match only.
    // Includes one example of whitelisting by user agent.
    // All are commented out.
    $bb2_whitelist_user_agents = array();
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Do not edit below this line
    if (!empty($bb2_whitelist_ip_ranges)) {
        foreach ($bb2_whitelist_ip_ranges as $range) {
            if (match_cidr($package['ip'], $range)) {
                return true;
            }
        }
    }
    if (!empty($bb2_whitelist_user_agents)) {
        foreach ($bb2_whitelist_user_agents as $user_agent) {
            if (!strcmp($package['headers_mixed']['User-Agent'], $user_agent)) {
                return true;
            }
        }
    }
    return false;
}
开发者ID:bitweaver,项目名称:badbehavior,代码行数:43,代码来源:whitelist.inc.php


示例15: match_cidr

function match_cidr($addr, $cidr)
{
    $output = false;
    if (is_array($cidr)) {
        foreach ($cidr as $cidrlet) {
            if (match_cidr($addr, $cidrlet)) {
                $output = true;
            }
        }
    } else {
        $_parts = explode('/', $cidr);
        $ip = $_parts[0];
        if (isset($_parts[1])) {
            $mask = $_parts[1];
        } else {
            $mask = 32;
        }
        $mask = pow(2, 32) - pow(2, 32 - $mask);
        $output = (ip2long($addr) & $mask) == (ip2long($ip) & $mask);
    }
    return $output;
}
开发者ID:aunderwo,项目名称:sobc,代码行数:22,代码来源:functions.inc.php


示例16: bb2_whitelist

function bb2_whitelist($package)
{
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Inappropriate whitelisting WILL expose you to spam, or cause Bad
    // Behavior to stop functioning entirely!  DO NOT WHITELIST unless you
    // are 100% CERTAIN that you should.
    // IP address ranges use the CIDR format.
    // Includes four examples of whitelisting by IP address and netblock.
    $bb2_whitelist_ip_ranges = array();
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Inappropriate whitelisting WILL expose you to spam, or cause Bad
    // Behavior to stop functioning entirely!  DO NOT WHITELIST unless you
    // are 100% CERTAIN that you should.
    // You should not whitelist search engines by user agent. Use the IP
    // netblock for the search engine instead. See http://whois.arin.net/
    // to locate the netblocks for an IP.
    // User agents are matched by exact match only.
    // Includes one example of whitelisting by user agent.
    // All are commented out.
    $bb2_whitelist_user_agents = array();
    // DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER! DANGER!
    // Do not edit below this line
    if (!empty($bb2_whitelist_ip_ranges)) {
        foreach ($bb2_whitelist_ip_ranges as $range) {
            if (match_cidr($package['ip'], $range)) {
                return true;
            }
        }
    }
    if (!empty($bb2_whitelist_user_agents)) {
        foreach ($bb2_whitelist_user_agents as $user_agent) {
            if (!strcmp($package['headers_mixed']['User-Agent'], $user_agent)) {
                return true;
            }
        }
    }
    return false;
}
开发者ID:kldeepak,项目名称:swara,代码行数:38,代码来源:whitelist.inc.php


示例17: bb2_run_whitelist

function bb2_run_whitelist($package)
{
    # FIXME: Transitional, until port maintainters implement bb2_read_whitelist
    if (function_exists('bb2_read_whitelist')) {
        $whitelists = bb2_read_whitelist();
    } else {
        $whitelists = @parse_ini_file(dirname(BB2_CORE) . "/whitelist.ini");
    }
    if (@(!empty($whitelists['ip']))) {
        foreach ($whitelists['ip'] as $range) {
            if (match_cidr($package['ip'], $range)) {
                return true;
            }
        }
    }
    if (@(!empty($whitelists['useragent']))) {
        foreach ($whitelists['useragent'] as $user_agent) {
            if (!strcmp($package['headers_mixed']['User-Agent'], $user_agent)) {
                return true;
            }
        }
    }
    if (@(!empty($whitelists['url']))) {
        if (strpos($package['request_uri'], "?") === FALSE) {
            $request_uri = $package['request_uri'];
        } else {
            $request_uri = substr($package['request_uri'], 0, strpos($package['request_uri'], "?"));
        }
        foreach ($whitelists['url'] as $url) {
            $pos = strpos($request_uri, $url);
            if ($pos !== false && $pos == 0) {
                return true;
            }
        }
    }
    return false;
}
开发者ID:nealpoole,项目名称:fluxbb-bad-behavior,代码行数:37,代码来源:whitelist.inc.php


示例18: is_rfc1918

function is_rfc1918($addr)
{
    return match_cidr($addr, array("10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"));
}
开发者ID:eFiction,项目名称:v5_1-vaporware,代码行数:4,代码来源:functions.inc.php



注:本文中的match_cidr函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP match_grade_options函数代码示例发布时间:2022-05-15
下一篇:
PHP matchPackageVersion函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap