Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
DateTime /
TimeZone /
Local /
Delete
Unzip
Name
Size
Permission
Date
Action
Android.pm
995
B
-rw-rw-rw-
2020-12-23 06:00
Unix.pm
9.86
KB
-rw-rw-rw-
2020-12-23 06:00
VMS.pm
1.78
KB
-rw-rw-rw-
2020-12-23 06:00
Win32.pm
17.74
KB
-rw-rw-rw-
2019-04-20 23:50
Save
Rename
package DateTime::TimeZone::Local::Android; use strict; use warnings; use namespace::autoclean; our $VERSION = '2.46'; use Try::Tiny; use parent 'DateTime::TimeZone::Local'; sub Methods { return qw( FromEnv FromGetProp FromDefault ); } sub EnvVars { return 'TZ' } # https://chromium.googlesource.com/native_client/nacl-bionic/+/upstream/master/libc/tzcode/localtime.c sub FromGetProp { ## no critic (InputOutput::ProhibitBacktickOperators) my $name = `getprop persist.sys.timezone`; chomp $name; my $tz = try { ## no critic (Variables::RequireInitializationForLocalVars) local $SIG{__DIE__}; DateTime::TimeZone->new( name => $name ); }; return $tz if $tz; } # See the link above. Android always defaults to UTC sub FromDefault { return try { ## no critic (Variables::RequireInitializationForLocalVars) local $SIG{__DIE__}; DateTime::TimeZone->new( name => 'UTC' ); }; } 1;