Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python27 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
alembic
314
B
-rwxr-xr-x
2016-08-01 22:07
chardetect
320
B
-rwxr-xr-x
2016-11-17 09:43
easy_install
242
B
-rwxr-xr-x
2023-11-13 22:10
easy_install-2.7
242
B
-rwxr-xr-x
2023-11-13 22:10
futurize
316
B
-rwxr-xr-x
2019-10-14 12:02
jsonschema
329
B
-rwxr-xr-x
2017-03-17 14:51
lswsgi
103.39
KB
-rwxr-xr-x
2021-02-24 16:24
mako-render
1.18
KB
-rwxr-xr-x
2016-08-01 22:04
nosetests
309
B
-rwxr-xr-x
2015-07-22 23:44
nosetests-2.7
317
B
-rwxr-xr-x
2015-07-22 23:44
pasteurize
320
B
-rwxr-xr-x
2019-10-14 12:02
pip
660
B
-rwxr-xr-x
2023-11-13 22:08
pip-2
660
B
-rwxr-xr-x
2023-11-13 22:08
pip-2.7
660
B
-rwxr-xr-x
2023-11-13 22:08
pip2
660
B
-rwxr-xr-x
2023-11-13 22:08
pip2.7
660
B
-rwxr-xr-x
2023-11-13 22:08
pydoc
91
B
-rwxr-xr-x
2025-01-08 11:31
python
6.98
KB
-rwxr-xr-x
2025-01-08 11:32
python-config
1.82
KB
-rwxr-xr-x
2025-01-08 11:31
python2
6.98
KB
-rwxr-xr-x
2025-01-08 11:32
python2-config
1.82
KB
-rwxr-xr-x
2025-01-08 11:31
python2.7
6.98
KB
-rwxr-xr-x
2025-01-08 11:32
python2.7-config
1.82
KB
-rwxr-xr-x
2025-01-08 11:31
raven
304
B
-rwxr-xr-x
2017-11-02 11:28
xmlcatalog
22.7
KB
-rwxr-xr-x
2015-11-11 14:30
xmllint
77.35
KB
-rwxr-xr-x
2015-11-11 14:30
Save
Rename
#!/opt/alt/python27/bin/python def render(data, kw): from mako.template import Template from mako.lookup import TemplateLookup lookup = TemplateLookup(["."]) return Template(data, lookup=lookup).render(**kw) def varsplit(var): if "=" not in var: return (var, "") return var.split("=", 1) def main(argv=None): from os.path import isfile from sys import stdin if argv is None: import sys argv = sys.argv from optparse import OptionParser parser = OptionParser("usage: %prog [FILENAME]") parser.add_option("--var", default=[], action="append", help="variable (can be used multiple times, use name=value)") opts, args = parser.parse_args(argv[1:]) if len(args) not in (0, 1): parser.error("wrong number of arguments") # Will exit if (len(args) == 0) or (args[0] == "-"): fo = stdin else: filename = args[0] if not isfile(filename): raise SystemExit("error: can't find %s" % filename) fo = open(filename) kw = dict([varsplit(var) for var in opts.var]) data = fo.read() print render(data, kw) if __name__ == "__main__": main()