line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#=============================================================================== |
2
|
|
|
|
|
|
|
# PODNAME: Net::IP::Identifier::Plugin::Baidu |
3
|
|
|
|
|
|
|
# ABSTRACT: identify Baidu (AS63288, AS55967, AS45085, AS45076, AS38627, AS38365, AS264376, AS199506) owned IP addresses |
4
|
|
|
|
|
|
|
# |
5
|
|
|
|
|
|
|
# AUTHOR: Reid Augustin (REID) |
6
|
|
|
|
|
|
|
# EMAIL: reid@hellosix.com |
7
|
|
|
|
|
|
|
# CREATED: Sun Dec 21 11:39:36 PST 2014 |
8
|
|
|
|
|
|
|
#=============================================================================== |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
29
|
use 5.008; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
69
|
|
11
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
154
|
|
12
|
1
|
|
|
1
|
|
9
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
57
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
package Net::IP::Identifier::Plugin::Baidu; |
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
1
|
|
6
|
use Role::Tiny::With; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
241
|
|
17
|
|
|
|
|
|
|
with qw( Net::IP::Identifier_Role ); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
our $VERSION = '0.110'; # VERSION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub new { |
22
|
1
|
|
|
1
|
1
|
3
|
my ($class, %opts) = @_; |
23
|
|
|
|
|
|
|
|
24
|
1
|
|
|
|
|
2
|
my $self = {}; |
25
|
1
|
|
33
|
|
|
8
|
bless $self, (ref $class || $class); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# List of known Baidu (AS63288, AS55967, AS45085, AS45076, AS38627, |
28
|
|
|
|
|
|
|
# AS38365, AS264376, AS199506) IP blocks as of May 2015 |
29
|
1
|
|
|
|
|
5
|
$self->ips( |
30
|
|
|
|
|
|
|
# 7 Network Blocks |
31
|
|
|
|
|
|
|
'119.63.192.0/21', |
32
|
|
|
|
|
|
|
'119.75.208.0/20', |
33
|
|
|
|
|
|
|
'180.76.0.0/16', |
34
|
|
|
|
|
|
|
'182.61.0.0/16', |
35
|
|
|
|
|
|
|
'185.10.104.0/22', |
36
|
|
|
|
|
|
|
'222.199.188.0/22', |
37
|
|
|
|
|
|
|
'2400:da00::/32', |
38
|
|
|
|
|
|
|
); |
39
|
1
|
|
|
|
|
9
|
return $self; |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
sub name { |
43
|
3
|
|
|
3
|
0
|
13
|
return 'Baidu'; |
44
|
|
|
|
|
|
|
} |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
1; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
__END__ |