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 # # this test exercise the XPath basic engine, parser, etc, and # allows to detect memory leaks # import sys import libxml2 instance="""<?xml version="1.0"?> <tag xmlns:foo='urn:foo' xmlns:bar='urn:bar' xmlns:baz='urn:baz' />""" def namespaceDefs(node): n = node.nsDefs() while n: yield n n = n.next def checkNamespaceDefs(node, count): nsList = list(namespaceDefs(node)) #print nsList if len(nsList) != count : raise Exception("Error: saw %d namespace declarations. Expected %d" % (len(nsList), count)) # Memory debug specific libxml2.debugMemory(1) # Remove single namespace doc = libxml2.parseDoc(instance) node = doc.getRootElement() checkNamespaceDefs(node, 3) ns = node.removeNsDef('urn:bar') checkNamespaceDefs(node, 2) ns.freeNsList() doc.freeDoc() # Remove all namespaces doc = libxml2.parseDoc(instance) node = doc.getRootElement() checkNamespaceDefs(node, 3) ns = node.removeNsDef(None) checkNamespaceDefs(node, 0) ns.freeNsList() doc.freeDoc() # Remove a namespace refered to by a child doc = libxml2.newDoc("1.0") root = doc.newChild(None, "root", None) namespace = root.newNs("http://example.com/sample", "s") child = root.newChild(namespace, "child", None) root.removeNsDef("http://example.com/sample") doc.reconciliateNs(root) namespace.freeNsList() doc.serialize() # This should not segfault doc.freeDoc() # Memory debug specific libxml2.cleanupParser() if libxml2.debugMemory(1) == 0: print("OK") else: print("Memory leak %d bytes" % (libxml2.debugMemory(1))) libxml2.dumpMemory()