Hackfut Security File Manager
Current Path:
/usr/lib/python2.6/site-packages/clcommon
usr
/
lib
/
python2.6
/
site-packages
/
clcommon
/
📁
..
📄
__init__.py
(196 B)
📄
__init__.pyc
(491 B)
📄
__init__.pyo
(491 B)
📄
clcagefs.py
(6.16 KB)
📄
clcagefs.pyc
(7.6 KB)
📄
clcagefs.pyo
(7.6 KB)
📄
clconfpars.py
(1.68 KB)
📄
clconfpars.pyc
(2.5 KB)
📄
clconfpars.pyo
(2.5 KB)
📄
cldetect.py
(2.93 KB)
📄
cldetect.pyc
(2.99 KB)
📄
cldetect.pyo
(2.99 KB)
📄
clemail.py
(1.86 KB)
📄
clemail.pyc
(2.07 KB)
📄
clemail.pyo
(2.07 KB)
📄
clfunc.py
(2.5 KB)
📄
clfunc.pyc
(3.36 KB)
📄
clfunc.pyo
(3.36 KB)
📄
clhook.py
(3.55 KB)
📄
clhook.pyc
(3.77 KB)
📄
clhook.pyo
(3.77 KB)
📄
cllog.py
(1.11 KB)
📄
cllog.pyc
(1.83 KB)
📄
cllog.pyo
(1.83 KB)
📄
cloutput.py
(447 B)
📄
cloutput.pyc
(697 B)
📄
cloutput.pyo
(697 B)
📄
clpwd.py
(3.53 KB)
📄
clpwd.pyc
(4.7 KB)
📄
clpwd.pyo
(4.7 KB)
📄
clsec.py
(450 B)
📄
clsec.pyc
(1.21 KB)
📄
clsec.pyo
(1.21 KB)
📁
cpapi
📄
utils.py
(1.45 KB)
📄
utils.pyc
(2.1 KB)
📄
utils.pyo
(2.1 KB)
Editing: cllog.py
import datetime import os import sys import fcntl class ClAuditLog: def __init__(self, log_file_name): self._log_file_name = log_file_name def info_log_write(self, msg=""): dt_now = datetime.datetime.now() # Determine parent PID and it's name parent_proc_id = os.getppid() # Determine parent process name proc_name = self._get_process_name(parent_proc_id) # write to log file try: audit_log_file = open(self._log_file_name, 'a') fcntl.lockf(audit_log_file, fcntl.LOCK_EX | fcntl.LOCK_NB) audit_log_file.write(dt_now.strftime("%Y.%m.%d %H:%M:%S") + ": Parent process: " + proc_name + " (PID: " + str(parent_proc_id) + "): Args: " + str(sys.argv[1:]) + " " + msg + "\n") audit_log_file.close() except (IOError, OSError): # Ignore all file errors pass @staticmethod def _get_process_name(pid): ''' Get process name by pid :param pid: PID for get process name :return: process name ''' name = "<Unknown>" try: f = open("/proc/%s/stat" % pid, 'r') name = f.read().split(' ')[1].replace('(', '').replace(')', '') f.close() except: pass return name
Upload File
Create Folder