Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
salt /
renderers /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
28
B
-rw-r--r--
2022-05-16 09:16
aws_kms.py
8.03
KB
-rw-r--r--
2022-05-16 09:16
cheetah.py
644
B
-rw-r--r--
2022-05-16 09:16
dson.py
1.01
KB
-rw-r--r--
2022-05-16 09:16
genshi.py
1.27
KB
-rw-r--r--
2022-05-16 09:16
gpg.py
13.4
KB
-rw-r--r--
2022-05-16 09:16
hjson.py
677
B
-rw-r--r--
2022-05-16 09:16
jinja.py
2.16
KB
-rw-r--r--
2022-05-16 09:16
json.py
546
B
-rw-r--r--
2022-05-16 09:16
json5.py
1.03
KB
-rw-r--r--
2022-05-16 09:16
mako.py
838
B
-rw-r--r--
2022-05-16 09:16
msgpack.py
834
B
-rw-r--r--
2022-05-16 09:16
nacl.py
2.64
KB
-rw-r--r--
2022-05-16 09:16
pass.py
2.91
KB
-rw-r--r--
2022-05-16 09:16
py.py
4.17
KB
-rw-r--r--
2022-05-16 09:16
pydsl.py
12.99
KB
-rw-r--r--
2022-05-16 09:16
pyobjects.py
16.4
KB
-rw-r--r--
2022-05-16 09:16
stateconf.py
19.48
KB
-rw-r--r--
2022-05-16 09:16
tomlmod.py
906
B
-rw-r--r--
2022-05-16 09:16
wempy.py
761
B
-rw-r--r--
2022-05-16 09:16
yaml.py
3.12
KB
-rw-r--r--
2022-05-16 09:16
yamlex.py
735
B
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" DSON Renderer for Salt This renderer is intended for demonstration purposes. Information on the DSON spec can be found `here`__. .. __: http://vpzomtrrfrt.github.io/DSON/ This renderer requires `Dogeon`__ (installable via pip) .. __: https://github.com/soasme/dogeon """ import logging try: import dson except ImportError: dson = None log = logging.getLogger(__name__) def __virtual__(): if dson is None: return (False, "The dogeon Python package is not installed") return True def render(dson_input, saltenv="base", sls="", **kwargs): """ Accepts DSON data as a string or as a file object and runs it through the JSON parser. :rtype: A Python data structure """ if not isinstance(dson_input, str): dson_input = dson_input.read() log.debug("DSON input = %s", dson_input) if dson_input.startswith("#!"): dson_input = dson_input[(dson_input.find("\n") + 1) :] if not dson_input.strip(): return {} return dson.loads(dson_input)