line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#=============================================================================== |
2
|
|
|
|
|
|
|
# PODNAME: Net::IP::Identifier::Plugin::Twitter |
3
|
|
|
|
|
|
|
# ABSTRACT: identify Twitter (AS13414 AS35995 AS54888) 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
|
|
213
|
use 5.008; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
34
|
|
11
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
24
|
|
12
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
28
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
package Net::IP::Identifier::Plugin::Twitter; |
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
1
|
|
4
|
use Role::Tiny::With; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
122
|
|
17
|
|
|
|
|
|
|
with qw( Net::IP::Identifier_Role ); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
our $VERSION = '0.111'; # VERSION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub new { |
22
|
1
|
|
|
1
|
1
|
3
|
my ($class, %opts) = @_; |
23
|
|
|
|
|
|
|
|
24
|
1
|
|
|
|
|
1
|
my $self = {}; |
25
|
1
|
|
33
|
|
|
7
|
bless $self, (ref $class || $class); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# List of known Twitter (AS13414 AS35995 AS54888) IP blocks as of May 2015. |
28
|
1
|
|
|
|
|
3
|
$self->ips( |
29
|
|
|
|
|
|
|
# 10 Network Blocks |
30
|
|
|
|
|
|
|
# extending 8.25.194.0/23 to include 8.25.196.0/23 |
31
|
|
|
|
|
|
|
'8.25.194.0-8.25.197.255', |
32
|
|
|
|
|
|
|
'185.45.4.0/22', |
33
|
|
|
|
|
|
|
'192.133.76.0/22', |
34
|
|
|
|
|
|
|
'199.16.156.0/22', |
35
|
|
|
|
|
|
|
'199.59.148.0/22', |
36
|
|
|
|
|
|
|
'199.96.56.0/21', |
37
|
|
|
|
|
|
|
'209.170.99.0/24', |
38
|
|
|
|
|
|
|
'2400:6680::/32', |
39
|
|
|
|
|
|
|
'2620:fe::/40', |
40
|
|
|
|
|
|
|
'2a04:9d40::/29', |
41
|
|
|
|
|
|
|
); |
42
|
1
|
|
|
|
|
7
|
return $self; |
43
|
|
|
|
|
|
|
} |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
sub name { |
46
|
3
|
|
|
3
|
0
|
11
|
return 'Twitter'; |
47
|
|
|
|
|
|
|
} |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
__END__ |