Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.143.215.114
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libxml2-python-2.9.1 /
Delete
Unzip
Name
Size
Permission
Date
Action
TODO
1.58
KB
-rw-r--r--
2009-07-30 15:24
apibuild.py
79.75
KB
-rwxr-xr-x
2013-03-30 14:34
attribs.py
819
B
-rwxr-xr-x
2013-03-30 14:34
build.py
1.51
KB
-rwxr-xr-x
2013-03-30 14:34
compareNodes.py
1.48
KB
-rwxr-xr-x
2013-03-30 14:34
ctxterror.py
1.29
KB
-rwxr-xr-x
2013-03-30 14:34
cutnpaste.py
1.26
KB
-rwxr-xr-x
2013-03-30 14:34
dtdvalid.py
619
B
-rwxr-xr-x
2013-03-30 14:34
error.py
1.04
KB
-rwxr-xr-x
2013-03-30 14:34
inbuf.py
498
B
-rwxr-xr-x
2013-03-30 14:34
index.py
32.14
KB
-rwxr-xr-x
2009-07-30 15:24
indexes.py
2.9
KB
-rwxr-xr-x
2013-03-30 14:34
input_callback.py
5.01
KB
-rwxr-xr-x
2013-04-02 02:25
libxml2class.txt
22.42
KB
-rw-r--r--
2013-04-19 07:28
nsdel.py
1.55
KB
-rwxr-xr-x
2013-03-30 14:34
outbuf.py
3.07
KB
-rwxr-xr-x
2013-03-30 14:34
push.py
769
B
-rwxr-xr-x
2013-03-30 14:34
pushSAX.py
1.46
KB
-rwxr-xr-x
2013-03-30 14:34
pushSAXhtml.py
1.57
KB
-rwxr-xr-x
2013-03-30 14:34
python.html
19.46
KB
-rw-r--r--
2013-03-27 08:08
reader.py
12.23
KB
-rwxr-xr-x
2013-03-30 14:34
reader2.py
5.22
KB
-rwxr-xr-x
2013-03-30 14:34
reader3.py
4.06
KB
-rwxr-xr-x
2013-03-30 14:34
reader4.py
1.15
KB
-rwxr-xr-x
2013-03-30 14:34
reader5.py
1.22
KB
-rwxr-xr-x
2013-03-30 14:34
reader6.py
2.61
KB
-rwxr-xr-x
2013-03-30 14:34
reader7.py
1.72
KB
-rwxr-xr-x
2013-04-02 02:25
reader8.py
683
B
-rwxr-xr-x
2013-04-02 02:25
readererr.py
1.25
KB
-rwxr-xr-x
2013-03-30 14:34
readernext.py
2.43
KB
-rwxr-xr-x
2013-03-30 14:34
regexp.py
716
B
-rwxr-xr-x
2013-03-30 14:34
relaxng.py
1.17
KB
-rwxr-xr-x
2013-03-30 14:34
resolver.py
857
B
-rwxr-xr-x
2013-03-30 14:34
schema.py
1.28
KB
-rwxr-xr-x
2013-03-30 14:34
serialize.py
4.18
KB
-rwxr-xr-x
2013-03-30 14:34
sync.py
3.44
KB
-rwxr-xr-x
2013-03-30 14:34
thread2.py
2.25
KB
-rwxr-xr-x
2013-03-30 14:34
tst.py
587
B
-rwxr-xr-x
2013-03-30 14:34
tstLastError.py
2.83
KB
-rwxr-xr-x
2013-03-30 14:34
tstURI.py
1.08
KB
-rwxr-xr-x
2013-03-30 14:34
tstmem.py
720
B
-rwxr-xr-x
2013-03-30 14:34
tstxpath.py
1.43
KB
-rwxr-xr-x
2013-03-30 14:34
validDTD.py
1.2
KB
-rwxr-xr-x
2013-03-30 14:34
validRNG.py
1.9
KB
-rwxr-xr-x
2013-03-30 14:34
validSchemas.py
2.02
KB
-rwxr-xr-x
2013-03-30 14:34
validate.py
1.68
KB
-rwxr-xr-x
2013-03-30 14:34
walker.py
2.35
KB
-rwxr-xr-x
2013-04-02 02:25
xpath.py
1.17
KB
-rwxr-xr-x
2013-03-30 14:34
xpathext.py
1.1
KB
-rwxr-xr-x
2013-03-30 14:34
xpathleak.py
1.53
KB
-rwxr-xr-x
2013-04-02 02:25
xpathns.py
552
B
-rwxr-xr-x
2013-03-30 14:34
xpathret.py
1.29
KB
-rwxr-xr-x
2013-03-30 14:34
Save
Rename
#!/usr/bin/python -u import libxml2 import sys # Memory debug specific libxml2.debugMemory(1) schema="""<?xml version="1.0" encoding="iso-8859-1"?> <schema xmlns = "http://www.w3.org/2001/XMLSchema"> <element name = "Customer"> <complexType> <sequence> <element name = "FirstName" type = "string" /> <element name = "MiddleInitial" type = "string" /> <element name = "LastName" type = "string" /> </sequence> <attribute name = "customerID" type = "integer" /> </complexType> </element> </schema>""" instance="""<?xml version="1.0" encoding="iso-8859-1"?> <Customer customerID = "24332"> <FirstName>Raymond</FirstName> <MiddleInitial>G</MiddleInitial> <LastName>Bayliss</LastName> </Customer> """ ctxt_parser = libxml2.schemaNewMemParserCtxt(schema, len(schema)) ctxt_schema = ctxt_parser.schemaParse() ctxt_valid = ctxt_schema.schemaNewValidCtxt() doc = libxml2.parseDoc(instance) ret = doc.schemaValidateDoc(ctxt_valid) if ret != 0: print("error doing schema validation") sys.exit(1) doc.freeDoc() del ctxt_parser del ctxt_schema del ctxt_valid libxml2.schemaCleanupTypes() # Memory debug specific libxml2.cleanupParser() if libxml2.debugMemory(1) == 0: print("OK") else: print("Memory leak %d bytes" % (libxml2.debugMemory(1))) libxml2.dumpMemory()