Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.142.211.95
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
perl5 /
vendor_perl /
Crypt /
SSLeay /
Delete
Unzip
Name
Size
Permission
Date
Action
CTX.pm
66
B
-rw-r--r--
2012-07-30 11:35
Conn.pm
67
B
-rw-r--r--
2012-07-30 11:35
Err.pm
66
B
-rw-r--r--
2012-07-30 11:35
MainContext.pm
903
B
-rw-r--r--
2012-07-30 11:35
Version.pm
2.27
KB
-rw-r--r--
2014-04-22 14:30
X509.pm
553
B
-rw-r--r--
2012-07-30 11:35
Save
Rename
package Crypt::SSLeay::X509; use strict; sub not_before { my $cert = shift; not_string2time($cert->get_notBeforeString); } sub not_after { my $cert = shift; not_string2time($cert->get_notAfterString); } sub not_string2time { my $string = shift; # $string has the form 021019235959Z my($year, $month, $day, $hour, $minute, $second, $GMT)= $string=~m/(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(Z)?/; $year += 2000; my $time="$year-$month-$day $hour:$minute:$second"; $time .= " GMT" if $GMT; $time; } 1;