File Coverage

blib/lib/Net/IP/Identifier/Plugin/UPS.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition 1 3 33.3
subroutine 6 6 100.0
pod 1 2 50.0
total 26 29 89.6


line stmt bran cond sub pod time code
1             #===============================================================================
2             # PODNAME: Net::IP::Identifier::Plugin::UPS
3             # ABSTRACT: identify UPS (AS4973, AS4972, AS4145, AS12217) 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   17 use 5.008;
  1         3  
  1         32  
11 1     1   4 use strict;
  1         1  
  1         38  
12 1     1   6 use warnings;
  1         3  
  1         83  
13              
14             package Net::IP::Identifier::Plugin::UPS;
15              
16 1     1   7 use Role::Tiny::With;
  1         1  
  1         192  
17             with qw( Net::IP::Identifier_Role );
18              
19             our $VERSION = '0.111'; # VERSION
20              
21             sub new {
22 1     1 1 2 my ($class, %opts) = @_;
23              
24 1         1 my $self = {};
25 1   33     7 bless $self, (ref $class || $class);
26              
27             # List of known UPS (AS12217) IP blocks as of May 2015
28 1         4 $self->ips(
29             # 8 Network Blocks
30             '63.171.196.0/24',
31             '65.174.66.0/24',
32             '65.174.169.0/24',
33             '153.2.0.0/16',
34             '156.134.0.0/16',
35             '192.55.236.0/24',
36             '205.173.112.0/21',
37             '208.14.182.0/24',
38             );
39 1         4 return $self;
40             }
41              
42             sub name {
43 3     3 0 9 return 'UPS';
44             }
45              
46             1;
47              
48             __END__