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 /
perl5 /
Mail /
Box /
Locker /
[ HOME SHELL ]
Name
Size
Permission
Action
DotLock.pm
2.81
KB
-rw-r--r--
DotLock.pod
5.07
KB
-rw-r--r--
FcntlLock.pm
2.59
KB
-rw-r--r--
FcntlLock.pod
5.46
KB
-rw-r--r--
Flock.pm
2.38
KB
-rw-r--r--
Flock.pod
5.63
KB
-rw-r--r--
Multi.pm
2.43
KB
-rw-r--r--
Multi.pod
5.58
KB
-rw-r--r--
Mutt.pm
2.39
KB
-rw-r--r--
Mutt.pod
5.02
KB
-rw-r--r--
NFS.pm
3.29
KB
-rw-r--r--
NFS.pod
5.51
KB
-rw-r--r--
POSIX.pm
2.71
KB
-rw-r--r--
POSIX.pod
5.82
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Multi.pm
# Copyrights 2001-2020 by [Mark Overmeer]. # For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 2.02. # This code is part of distribution Mail-Box. Meta-POD processed with # OODoc into POD and HTML manual-pages. See README.md # Copyright Mark Overmeer. Licensed under the same terms as Perl itself. package Mail::Box::Locker::Multi; use vars '$VERSION'; $VERSION = '3.009'; use base 'Mail::Box::Locker'; use strict; use warnings; use Carp; sub init($) { my ($self, $args) = @_; $self->SUPER::init($args); my @use = exists $args->{use} ? @{delete $args->{use}} : $^O eq 'MSWin32' ? qw/Flock/ : qw/NFS FcntlLock Flock/; my (@lockers, @used); foreach my $method (@use) { if(UNIVERSAL::isa($method, 'Mail::Box::Locker')) { push @lockers, $method; (my $used = ref $method) =~ s/.*\:\://; push @used, $used; next; } my $locker = eval { Mail::Box::Locker->new ( %$args , method => $method , timeout => 1 ) }; next unless defined $locker; push @lockers, $locker; push @used, $method; } $self->{MBLM_lockers} = \@lockers; $self->log(PROGRESS => "Multi-locking via @used."); $self; } #------------------------------------------- sub name() {'MULTI'} sub _try_lock($) { my $self = shift; my @successes; foreach my $locker ($self->lockers) { unless($locker->lock) { $_->unlock foreach @successes; return 0; } push @successes, $locker; } 1; } sub unlock() { my $self = shift; $self->hasLock or return $self; $_->unlock foreach $self->lockers; $self->SUPER::unlock; $self; } sub lock() { my $self = shift; return 1 if $self->hasLock; my $timeout = $self->timeout; my $end = $timeout eq 'NOTIMEOUT' ? -1 : $timeout; while(1) { return $self->SUPER::lock if $self->_try_lock; last unless --$end; sleep 1; } return 0; } sub isLocked() { my $self = shift; # Try get a lock $self->_try_lock($self->filename) or return 0; # and release it immediately $self->unlock; 1; } #------------------------------------------- sub lockers() { @{shift->{MBLM_lockers}} } 1;
Close