/opt/imunify360/venv/lib/python3.11/site-packages/defence360agent/utils
import functools import inspect from defence360agent.contracts.config import ANTIVIRUS_MODE def skip(f): @functools.wraps(f) async def async_wrapper(*args, **kwargs): return None if ANTIVIRUS_MODE else await f(*args, **kwargs) @functools.wraps(f) def wrapper(*args, **kwargs): return None if ANTIVIRUS_MODE else f(*args, **kwargs) return async_wrapper if inspect.iscoroutinefunction(f) else wrapper enabled, disabled = ANTIVIRUS_MODE, not ANTIVIRUS_MODE
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
_shutil.py
Edit
antivirus_mode.py
Edit
async_utils.py
Edit
benchmark.py
Edit
buffer.py
Edit
check_db.py
Edit
check_lock.py
Edit
cli.py
Edit
common.py
Edit
completions.py
Edit
config.py
Edit
cronjob.py
Edit
doctor.py
Edit
fd_ops.py
Edit
hyperscan.py
Edit
importer.py
Edit
ipecho.py
Edit
json.py
Edit
kwconfig.py
Edit
net_transport.py
Edit
parsers.py
Edit
resource_limits.py
Edit
safe_fileops.py
Edit
safe_sequence.py
Edit
serialization.py
Edit
sshutil.py
Edit
subprocess.py
Edit
support.py
Edit
threads.py
Edit
validate.py
Edit
whmcs.py
Edit
wordpress_mu_plugin.py
Edit