shell bypass 403

GrazzMean Shell

: /kunden/usr/share/perl5/XML/XPath/ [ drwxr-xr-x ]
Uname: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
Software: Apache
PHP version: 5.6.40 [ PHP INFO ] PHP os: Linux
Server Ip: 217.160.0.194
Your Ip: 216.73.216.203
User: u72294154 (9179942) | Group: ftpusers (600)
Safe Mode: OFF
Disable Function:
NONE

name : Root.pm
package XML::XPath::Root;

$VERSION = '1.44';

use strict; use warnings;
use XML::XPath::XMLParser;
use XML::XPath::NodeSet;

sub new {
	my $class = shift;
	my $self; # actually don't need anything here - just a placeholder
	bless \$self, $class;
}

sub as_string {
	# do nothing
}

sub as_xml {
    return "<Root/>\n";
}

sub evaluate {
	my $self = shift;
	my $nodeset = shift;

#	warn "Eval ROOT\n";

	# must only ever occur on 1 node
	die "Can't go to root on > 1 node!" unless $nodeset->size == 1;

	my $newset = XML::XPath::NodeSet->new();
	$newset->push($nodeset->get_node(1)->getRootNode());
	return $newset;
}

1;
© 2026 GrazzMean