line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#=============================================================================== |
2
|
|
|
|
|
|
|
# PODNAME: Net::IP::Identifier::Plugin::Inktomi |
3
|
|
|
|
|
|
|
# ABSTRACT: identify Inktomi (AS14778) owned IP addresses |
4
|
|
|
|
|
|
|
# |
5
|
|
|
|
|
|
|
# AUTHOR: Reid Augustin (REID) |
6
|
|
|
|
|
|
|
# EMAIL: reid@hellosix.com |
7
|
|
|
|
|
|
|
# CREATED: Sun Oct 12 19:32:46 PDT 2014 |
8
|
|
|
|
|
|
|
#=============================================================================== |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
38
|
use 5.008; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
55
|
|
11
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
52
|
|
12
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
64
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
package Net::IP::Identifier::Plugin::Inktomi; |
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
1
|
|
700
|
use Role::Tiny::With; |
|
1
|
|
|
|
|
5948
|
|
|
1
|
|
|
|
|
154
|
|
17
|
|
|
|
|
|
|
with qw( Net::IP::Identifier_Role ); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
our $VERSION = '0.110'; # VERSION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub new { |
22
|
3
|
|
|
3
|
1
|
9
|
my ($class, %opts) = @_; |
23
|
|
|
|
|
|
|
|
24
|
3
|
|
|
|
|
6
|
my $self = {}; |
25
|
3
|
|
33
|
|
|
23
|
bless $self, (ref $class || $class); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# List of known Inktomi (AS14778) IP blocks as of May 2015 |
28
|
3
|
|
|
|
|
13
|
$self->ips( |
29
|
|
|
|
|
|
|
# 4 Network Blocks |
30
|
|
|
|
|
|
|
'66.196.64.0/18', |
31
|
|
|
|
|
|
|
'68.142.192.0/18', |
32
|
|
|
|
|
|
|
'72.30.0.0/16', |
33
|
|
|
|
|
|
|
'74.6.0.0/16', |
34
|
|
|
|
|
|
|
); |
35
|
3
|
|
|
|
|
19
|
return $self; |
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
sub name { |
39
|
14
|
|
|
14
|
0
|
895
|
return 'Inktomi'; |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
__END__ |