HEX
Server: LiteSpeed
System: Linux standart9.isimtescil.net 3.10.0-962.3.2.lve1.5.26.7.el7.x86_64 #1 SMP Wed Oct 2 07:53:12 EDT 2019 x86_64
User: karalev (5310)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //lib/python2.7/site-packages/clcommon/clsec.py
import os

class ClSec:
    class NoRootException(Exception):
        def __init__(self):
             Exception.__init__(self,'You need to be root to perform this command.')

    def is_root():
        if (os.geteuid() != 0):
            return False
        return True
    is_root = staticmethod(is_root)

    def check_root():
        if not (ClSec.is_root()):
            raise ClSec.NoRootException()
    check_root = staticmethod(check_root)