Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.190.105
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
XML /
XPathEngine /
[ HOME SHELL ]
Name
Size
Permission
Action
Boolean.pm
1.31
KB
-rw-r--r--
Expr.pm
19.61
KB
-rw-r--r--
Function.pm
10.8
KB
-rw-r--r--
Literal.pm
2.17
KB
-rw-r--r--
LocationPath.pm
1.1
KB
-rw-r--r--
NodeSet.pm
4.06
KB
-rw-r--r--
Number.pm
1.76
KB
-rw-r--r--
Root.pm
634
B
-rw-r--r--
Step.pm
14.17
KB
-rw-r--r--
Variable.pm
850
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Boolean.pm
# $Id: Boolean.pm,v 1.7 2000/07/03 08:54:47 matt Exp $ package XML::XPathEngine::Boolean; use XML::XPathEngine::Number; use XML::XPathEngine::Literal; use strict; use overload '""' => \&value, '<=>' => \&cmp; sub True { my $class = shift; my $val = 1; bless \$val, $class; } sub False { my $class = shift; my $val = 0; bless \$val, $class; } sub value { my $self = shift; $$self; } sub cmp { my $self = shift; my ($other, $swap) = @_; if ($swap) { return $other <=> $$self; } return $$self <=> $other; } sub to_number { XML::XPathEngine::Number->new($_[0]->value); } sub to_boolean { $_[0]; } sub to_literal { XML::XPathEngine::Literal->new($_[0]->value ? "true" : "false"); } sub string_value { return $_[0]->to_literal->value; } sub getChildNodes { return wantarray ? () : []; } sub getAttributes { return wantarray ? () : []; } 1; __END__ =head1 NAME XML::XPathEngine::Boolean - Boolean true/false values =head1 DESCRIPTION XML::XPathEngine::Boolean objects implement simple boolean true/false objects. =head1 API =head2 XML::XPathEngine::Boolean->True Creates a new Boolean object with a true value. =head2 XML::XPathEngine::Boolean->False Creates a new Boolean object with a false value. =head2 value() Returns true or false. =head2 to_literal() Returns the string "true" or "false". =cut
Close