line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package EPFL::Net::SSLTest; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
63982
|
use 5.006; |
|
1
|
|
|
|
|
3
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
22
|
|
5
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
44
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
EPFL::Net::SSLTest - Website SSL accessibility validator |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Version 1.00 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = '1.00'; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 SYNOPSIS |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Nothing to see here for now. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Check the command line epfl-net-ssl-test |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
A simple module to validate SSL accessibility of a Website |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
None |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 AUTHOR |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
William Belle, C<< >> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 BUGS AND LIMITATIONS |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Please report any bugs or feature requests here |
40
|
|
|
|
|
|
|
L. |
41
|
|
|
|
|
|
|
I will be notified, and then you'll automatically be notified of progress on |
42
|
|
|
|
|
|
|
your bug as I make changes. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SUPPORT |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
perldoc EPFL::Net::SSLTest |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
You can also look for information at: |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=over 4 |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
L |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=item * CPAN Ratings |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
L |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=item * Search CPAN |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
L |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=back |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Copyright ECOLE POLYTECHNIQUE FEDERALE DE LAUSANNE, Switzerland, VPSI, 2018. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); |
73
|
|
|
|
|
|
|
you may not use this file except in compliance with the License. |
74
|
|
|
|
|
|
|
You may obtain a copy of the License at |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
L |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software |
79
|
|
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, |
80
|
|
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
81
|
|
|
|
|
|
|
See the License for the specific language governing permissions and |
82
|
|
|
|
|
|
|
limitations under the License. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=cut |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
1; |