|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /proc/self/root/usr/lib/python2.7/site-packages/clcommon/ |
Upload File : |
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)