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.20
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 /
XML /
XPath /
Node /
[ HOME SHELL ]
Name
Size
Permission
Action
Attribute.pm
2.13
KB
-rw-r--r--
Comment.pm
1.44
KB
-rw-r--r--
Element.pm
11.81
KB
-rw-r--r--
Namespace.pm
1.62
KB
-rw-r--r--
PI.pm
1.26
KB
-rw-r--r--
Text.pm
1.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Text.pm
package XML::XPath::Node::Text; $VERSION = '1.44'; use strict; use warnings; use vars qw/@ISA/; @ISA = ('XML::XPath::Node'); package XML::XPath::Node::TextImpl; use vars qw/@ISA/; @ISA = ('XML::XPath::NodeImpl', 'XML::XPath::Node::Text'); use XML::XPath::Node ':node_keys'; sub new { my $class = shift; my ($text) = @_; my $pos = XML::XPath::Node->nextPos; my @vals; @vals[node_global_pos, node_text] = ($pos, $text); my $self = \@vals; bless $self, $class; } sub getNodeType { TEXT_NODE } sub isTextNode { 1; } sub appendText { my $self = shift; my ($text) = @_; $self->[node_text] .= $text; } sub getNodeValue { my $self = shift; $self->[node_text]; } sub getData { my $self = shift; $self->[node_text]; } sub setNodeValue { my $self = shift; $self->[node_text] = shift; } sub _to_sax { my $self = shift; my ($doch, $dtdh, $enth) = @_; $doch->characters( { Data => $self->getValue } ); } sub string_value { my $self = shift; $self->[node_text]; } sub toString { my $self = shift; XML::XPath::Node::XMLescape($self->[node_text], "<&"); } 1; __END__ =head1 NAME Text - an XML text node =head1 API =head2 new ( text ) Create a new text node. =head2 getValue / getData Returns the text =head2 string_value Returns the text =head2 appendText ( text ) Adds the given text string to this node. =cut
Close