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.47
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 /
Stream /
[ HOME SHELL ]
Name
Size
Permission
Action
IO
[ DIR ]
drwxr-xr-x
Parser
[ DIR ]
drwxr-xr-x
XPath
[ DIR ]
drwxr-xr-x
Namespace.pm
4.2
KB
-rw-r--r--
Node.pm
29.01
KB
-rw-r--r--
Parser.pm
12.77
KB
-rw-r--r--
Tools.pm
1.9
KB
-rw-r--r--
Tree.pm
25.04
KB
-rw-r--r--
XPath.pm
1.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : XPath.pm
############################################################################## # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # # Jabber # Copyright (C) 1998-2004 Jabber Software Foundation http://jabber.org/ # ############################################################################## package XML::Stream::XPath; use 5.008; use strict; use warnings; use vars qw( $VERSION %FUNCTIONS ); $VERSION = "1.24"; use XML::Stream::XPath::Value; use XML::Stream::XPath::Op; use XML::Stream::XPath::Query; sub AddFunction { my $function = shift; my $code = shift; if (!defined($code)) { delete($FUNCTIONS{$code}); return; } $FUNCTIONS{$function} = $code; } 1;
Close