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.13
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 /
share /
doc /
libevent-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
echo.t
759
B
-rw-r--r--
group.t
571
B
-rw-r--r--
idle2.t
1.2
KB
-rw-r--r--
msg.pm
1016
B
-rw-r--r--
perlqt.t
2.45
KB
-rw-r--r--
process.pm
1.59
KB
-rw-r--r--
queue_pending.t
792
B
-rw-r--r--
rand_interval.t
323
B
-rw-r--r--
readline.t
2.28
KB
-rw-r--r--
repeat.t
1005
B
-rw-r--r--
semaphore.pm
1.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : process.pm
use strict; package Event::process; use Carp; use Event qw(time); use base 'Event::Watcher'; use vars qw($DefaultPriority); $DefaultPriority = Event::PRIO_HIGH(); 'Event::Watcher'->register(); sub new { #lock %Event::; shift if @_ & 1; my %arg = @_; my $o = 'Event::process'->allocate(); $o->init([qw(pid timeout)], \%arg); $o->{any} = 1 if !exists $o->{pid}; $o->start(); $o; } my %cb; # pid => [events] Event->signal(signal => 'CHLD', #CLD? XXX callback => sub { my ($o) = @_; for (my $x=0; $x < $o->{count}; $x++) { my $pid = wait; last if $pid == -1; my $status = $?; my $cbq = delete $cb{$pid} if exists $cb{$pid}; $cbq ||= $cb{any} if exists $cb{any}; next if !$cbq; for my $e (@$cbq) { $e->{pid} = $pid; $e->{status} = $status; Event::queue($e); } } }, desc => "Event::process SIGCHLD handler"); sub _start { my ($o, $repeat) = @_; my $key = exists $o->{any}? 'any' : $o->{pid}; push @{$cb{ $key } ||= []}, $o; if (exists $o->{timeout}) { croak "Timeout for all child processes?" if $o->{any}; $o->{at} = time + $o->{timeout}; } } sub _stop { my $o = shift; my $key = exists $o->{any}? 'any' : $o->{pid}; $cb{ $key } = [grep { $_->{id} != $o->{id} } @{$cb{ $key }} ]; delete $cb{ $key } if @{ $cb{ $key }} == 0; } sub _alarm { my $o = shift; delete $o->{status}; Event::queue($o); } sub _postCB { my $o = shift; if (exists $o->{timeout}) { delete $o->{timeout}; $o->again; } } 1;
Close